aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorVasanthakumar Thiagarajan <vasanth@atheros.com>2009-08-26 11:38:45 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-08-28 14:40:49 -0400
commit42cc41edf24b75fc6c37c99aed6e85455687e080 (patch)
tree9ee650c950991c196abeb40f3bd6af28757086c5 /drivers/net/wireless
parent17d50d1df48631ae868958032edada7aa920636b (diff)
ath9k: Configure btcoex register during every reset
Make sure btcoex register configured with appropriate values after it is initialized with the default values from initvals.h during reset. Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/ath/ath9k/hw.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
index c3ecc7ee2ac0..d7e03f9788c0 100644
--- a/drivers/net/wireless/ath/ath9k/hw.c
+++ b/drivers/net/wireless/ath/ath9k/hw.c
@@ -2555,6 +2555,9 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
2555#endif 2555#endif
2556 } 2556 }
2557 2557
2558 if (ah->ah_sc->sc_flags & SC_OP_BTCOEX_ENABLED)
2559 ath9k_hw_btcoex_enable(ah);
2560
2558 return 0; 2561 return 0;
2559} 2562}
2560 2563