diff options
author | Rajkumar Manoharan <rmanohar@qca.qualcomm.com> | 2012-06-11 02:49:33 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-06-13 14:35:53 -0400 |
commit | 1bde95fa7ed84094d0606d9e79356a9dd8d0e01b (patch) | |
tree | ba9ccd0dbcf9e150ffc45dfef980fbcd054b5feb /drivers/net/wireless/ath/ath9k/hw.c | |
parent | 3863495b86d8ee8e7e70a328de5b88d555d7305a (diff) |
ath9k_hw: fix incorrect LNA register settings
After a full reset, mci_reset will put LNA update to the setting
for 2G mode. Those registers need to be forced to update when
the channel is in 5G.
Signed-off-by: Rajkumar Manoharan <rmanohar@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 8412128b842a..a9d328c955e9 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
@@ -1711,7 +1711,7 @@ static int ath9k_hw_do_fastcc(struct ath_hw *ah, struct ath9k_channel *chan) | |||
1711 | ath9k_hw_start_nfcal(ah, true); | 1711 | ath9k_hw_start_nfcal(ah, true); |
1712 | 1712 | ||
1713 | if (ath9k_hw_mci_is_enabled(ah)) | 1713 | if (ath9k_hw_mci_is_enabled(ah)) |
1714 | ar9003_mci_2g5g_switch(ah, true); | 1714 | ar9003_mci_2g5g_switch(ah, false); |
1715 | 1715 | ||
1716 | if (AR_SREV_9271(ah)) | 1716 | if (AR_SREV_9271(ah)) |
1717 | ar9002_hw_load_ani_reg(ah, chan); | 1717 | ar9002_hw_load_ani_reg(ah, chan); |