diff options
author | Vasanthakumar Thiagarajan <vasanth@atheros.com> | 2010-04-15 17:39:25 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-04-16 15:43:44 -0400 |
commit | d8903a5361817bd96ceed212ad27a380e7ef4d8e (patch) | |
tree | 4c02f68f0f87b56a9c2353c794e0a2e39595119e /drivers/net/wireless/ath/ath9k | |
parent | 6c94fdc97a27bd681afeaf05d9101b3f9a06f986 (diff) |
ath9k: Load SW filtered NF values and start NF cal during full reset for AR9003
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')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index a6f8032e54d6..824dd9e72564 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
@@ -1324,6 +1324,11 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan, | |||
1324 | if (ah->btcoex_hw.enabled) | 1324 | if (ah->btcoex_hw.enabled) |
1325 | ath9k_hw_btcoex_enable(ah); | 1325 | ath9k_hw_btcoex_enable(ah); |
1326 | 1326 | ||
1327 | if (AR_SREV_9300_20_OR_LATER(ah)) { | ||
1328 | ath9k_hw_loadnf(ah, curchan); | ||
1329 | ath9k_hw_start_nfcal(ah); | ||
1330 | } | ||
1331 | |||
1327 | return 0; | 1332 | return 0; |
1328 | } | 1333 | } |
1329 | EXPORT_SYMBOL(ath9k_hw_reset); | 1334 | EXPORT_SYMBOL(ath9k_hw_reset); |