aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/ath9k.h
diff options
context:
space:
mode:
authorMohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>2012-09-04 10:03:33 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-09-11 15:13:51 -0400
commit94ae77ea4600801233663e64025529ba43075643 (patch)
tree63a7f7c9b4dba88fac5e5dc99263cf968de13ac6 /drivers/net/wireless/ath/ath9k/ath9k.h
parent90be994cd0d70fbe4a97b144806db6cfa497392c (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/ath9k.h')
-rw-r--r--drivers/net/wireless/ath/ath9k/ath9k.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h
index 7373e4b92c92..2bb89b1a733b 100644
--- a/drivers/net/wireless/ath/ath9k/ath9k.h
+++ b/drivers/net/wireless/ath/ath9k/ath9k.h
@@ -473,7 +473,7 @@ struct ath_btcoex {
473 unsigned long op_flags; 473 unsigned long op_flags;
474 int bt_stomp_type; /* Types of BT stomping */ 474 int bt_stomp_type; /* Types of BT stomping */
475 u32 btcoex_no_stomp; /* in usec */ 475 u32 btcoex_no_stomp; /* in usec */
476 u32 btcoex_period; /* in usec */ 476 u32 btcoex_period; /* in msec */
477 u32 btscan_no_stomp; /* in usec */ 477 u32 btscan_no_stomp; /* in usec */
478 u32 duty_cycle; 478 u32 duty_cycle;
479 u32 bt_wait_time; 479 u32 bt_wait_time;