diff options
author | Adrian Chadd <adrian.chadd@gmail.com> | 2011-05-26 21:08:04 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-05-27 20:53:48 +0400 |
commit | 1df85ecec36ad5da3f0165760704310d6c03f65f (patch) | |
tree | 14a43d663ef9aff20d9ecb2f0f439c96b1be443d /drivers/net/wireless | |
parent | 64c754ed3b0009e4fa248f739000dc234eb0d2c9 (diff) | |
download | linux-1df85ecec36ad5da3f0165760704310d6c03f65f.tar.xz |
ath9k: Fix AR9287 calibration
The AR9287 calibration code was not being called because of an
incorrect MAC revision check.
This forced the AR9287 to use the AR9285 initial calibration code and
bypass the AR9287 code entirely.
Signed-off-by: Adrian Chadd <adrian@freebsd.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ar9002_calib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9002_calib.c b/drivers/net/wireless/ath/ath9k/ar9002_calib.c index 015d97439935..2d4c0910295b 100644 --- a/drivers/net/wireless/ath/ath9k/ar9002_calib.c +++ b/drivers/net/wireless/ath/ath9k/ar9002_calib.c @@ -829,7 +829,7 @@ static bool ar9002_hw_init_cal(struct ath_hw *ah, struct ath9k_channel *chan) if (AR_SREV_9271(ah)) { if (!ar9285_hw_cl_cal(ah, chan)) return false; - } else if (AR_SREV_9285_12_OR_LATER(ah)) { + } else if (AR_SREV_9285(ah) && AR_SREV_9285_12_OR_LATER(ah)) { if (!ar9285_hw_clc(ah, chan)) return false; } else { |