diff options
author | Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com> | 2012-09-04 10:03:33 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-09-11 15:13:51 -0400 |
commit | 94ae77ea4600801233663e64025529ba43075643 (patch) | |
tree | 63a7f7c9b4dba88fac5e5dc99263cf968de13ac6 /drivers/net/wireless/ath/ath9k/gpio.c | |
parent | 90be994cd0d70fbe4a97b144806db6cfa497392c (diff) |
ath9k: Fix BTCOEX timer triggering comparision
Its more correct to convert btcoex_period to 'us' while
comparing with btcoex_no_stomp which is in 'us'.
Did not find any functionality issues being fixed,
as the generic hardware timer triggers are usually
refreshed with the newer duty cycle.
Cc: Rajkumar Manoharan <rmanohar@qca.qualcomm.com>
Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/gpio.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/gpio.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/gpio.c b/drivers/net/wireless/ath/ath9k/gpio.c index 9f83f71742a5..5046ca4e30a8 100644 --- a/drivers/net/wireless/ath/ath9k/gpio.c +++ b/drivers/net/wireless/ath/ath9k/gpio.c | |||
@@ -228,7 +228,12 @@ static void ath_btcoex_period_timer(unsigned long data) | |||
228 | ath9k_hw_btcoex_enable(ah); | 228 | ath9k_hw_btcoex_enable(ah); |
229 | spin_unlock_bh(&btcoex->btcoex_lock); | 229 | spin_unlock_bh(&btcoex->btcoex_lock); |
230 | 230 | ||
231 | if (btcoex->btcoex_period != btcoex->btcoex_no_stomp) { | 231 | /* |
232 | * btcoex_period is in msec while (btocex/btscan_)no_stomp are in usec, | ||
233 | * ensure that we properly convert btcoex_period to usec | ||
234 | * for any comparision with (btcoex/btscan_)no_stomp. | ||
235 | */ | ||
236 | if (btcoex->btcoex_period * 1000 != btcoex->btcoex_no_stomp) { | ||
232 | if (btcoex->hw_timer_enabled) | 237 | if (btcoex->hw_timer_enabled) |
233 | ath9k_gen_timer_stop(ah, btcoex->no_stomp_timer); | 238 | ath9k_gen_timer_stop(ah, btcoex->no_stomp_timer); |
234 | 239 | ||