diff options
author | Matthew Slattery <mslattery@solarflare.com> | 2009-11-28 05:35:24 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-11-28 23:58:52 -0800 |
commit | 0589ece031e31a238e60057ef2abfa1ff18d46d0 (patch) | |
tree | 562d879ecd15b820ff189b570f7081bab0aa287c /drivers/net/sfc/falcon.c | |
parent | fb45f2c154be470ad950bcf16f3662ec0ca48695 (diff) | |
download | kernel_samsung_espresso10-0589ece031e31a238e60057ef2abfa1ff18d46d0.zip kernel_samsung_espresso10-0589ece031e31a238e60057ef2abfa1ff18d46d0.tar.gz kernel_samsung_espresso10-0589ece031e31a238e60057ef2abfa1ff18d46d0.tar.bz2 |
sfc: Remove EFX_WORKAROUND_9141 macro
The "bug9141 workaround" of setting TX_FLUSH_MIN_LEN_EN should really
be considered as a normal bit of configuration rather than a
workaround.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/sfc/falcon.c')
-rw-r--r-- | drivers/net/sfc/falcon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sfc/falcon.c b/drivers/net/sfc/falcon.c index 9c4f898..b186fd2 100644 --- a/drivers/net/sfc/falcon.c +++ b/drivers/net/sfc/falcon.c @@ -3128,7 +3128,7 @@ int falcon_init_nic(struct efx_nic *efx) /* Prefetch threshold 2 => fetch when descriptor cache half empty */ EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PREF_THRESHOLD, 2); /* Squash TX of packets of 16 bytes or less */ - if (falcon_rev(efx) >= FALCON_REV_B0 && EFX_WORKAROUND_9141(efx)) + if (falcon_rev(efx) >= FALCON_REV_B0) EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1); efx_writeo(efx, &temp, FR_AZ_TX_RESERVED); |