diff options
author | Vasanthakumar Thiagarajan <vasanth@atheros.com> | 2010-12-06 04:27:59 -0800 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-12-07 16:54:23 -0500 |
commit | a95f1600081211433c5ff6f3668061c821552e9f (patch) | |
tree | b93da1ce1f8971990f56a3bf9ca7fa75bab9261e /drivers/net/wireless/ath/ath9k/ani.c | |
parent | 11441fb8b700bd782ae72d3dd87453fc5bc2ff12 (diff) | |
download | blackbird-op-linux-a95f1600081211433c5ff6f3668061c821552e9f.tar.gz blackbird-op-linux-a95f1600081211433c5ff6f3668061c821552e9f.zip |
ath9k_hw: Disable MRC CCK for AR9485
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ani.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ani.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ani.c b/drivers/net/wireless/ath/ath9k/ani.c index e2ffac3d4d8e..2e31c775351f 100644 --- a/drivers/net/wireless/ath/ath9k/ani.c +++ b/drivers/net/wireless/ath/ath9k/ani.c @@ -358,7 +358,7 @@ static void ath9k_hw_set_cck_nil(struct ath_hw *ah, u_int8_t immunityLevel) entry_cck->fir_step_level); /* Skip MRC CCK for pre AR9003 families */ - if (!AR_SREV_9300_20_OR_LATER(ah)) + if (!AR_SREV_9300_20_OR_LATER(ah) || AR_SREV_9485(ah)) return; if (aniState->mrcCCKOff == entry_cck->mrc_cck_on) |