diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ath9k.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ath9k.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h index bf3d4c4bfa52..0ea340fd071c 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h | |||
@@ -364,6 +364,7 @@ struct ath_btcoex { | |||
364 | int bt_stomp_type; /* Types of BT stomping */ | 364 | int bt_stomp_type; /* Types of BT stomping */ |
365 | u32 btcoex_no_stomp; /* in usec */ | 365 | u32 btcoex_no_stomp; /* in usec */ |
366 | u32 btcoex_period; /* in usec */ | 366 | u32 btcoex_period; /* in usec */ |
367 | u32 btscan_no_stomp; /* in usec */ | ||
367 | struct ath_gen_timer *no_stomp_timer; /* Timer for no BT stomping */ | 368 | struct ath_gen_timer *no_stomp_timer; /* Timer for no BT stomping */ |
368 | }; | 369 | }; |
369 | 370 | ||
@@ -429,6 +430,7 @@ void ath_deinit_leds(struct ath_softc *sc); | |||
429 | #define SC_OP_SCANNING BIT(10) | 430 | #define SC_OP_SCANNING BIT(10) |
430 | #define SC_OP_TSF_RESET BIT(11) | 431 | #define SC_OP_TSF_RESET BIT(11) |
431 | #define SC_OP_BT_PRIORITY_DETECTED BIT(12) | 432 | #define SC_OP_BT_PRIORITY_DETECTED BIT(12) |
433 | #define SC_OP_BT_SCAN BIT(13) | ||
432 | 434 | ||
433 | /* Powersave flags */ | 435 | /* Powersave flags */ |
434 | #define PS_WAIT_FOR_BEACON BIT(0) | 436 | #define PS_WAIT_FOR_BEACON BIT(0) |
@@ -478,6 +480,7 @@ struct ath_softc { | |||
478 | u8 nbcnvifs; | 480 | u8 nbcnvifs; |
479 | u16 nvifs; | 481 | u16 nvifs; |
480 | bool ps_enabled; | 482 | bool ps_enabled; |
483 | bool ps_idle; | ||
481 | unsigned long ps_usecount; | 484 | unsigned long ps_usecount; |
482 | enum ath9k_int imask; | 485 | enum ath9k_int imask; |
483 | 486 | ||
@@ -535,11 +538,6 @@ static inline void ath_read_cachesize(struct ath_common *common, int *csz) | |||
535 | common->bus_ops->read_cachesize(common, csz); | 538 | common->bus_ops->read_cachesize(common, csz); |
536 | } | 539 | } |
537 | 540 | ||
538 | static inline void ath_bus_cleanup(struct ath_common *common) | ||
539 | { | ||
540 | common->bus_ops->cleanup(common); | ||
541 | } | ||
542 | |||
543 | extern struct ieee80211_ops ath9k_ops; | 541 | extern struct ieee80211_ops ath9k_ops; |
544 | extern int modparam_nohwcrypt; | 542 | extern int modparam_nohwcrypt; |
545 | 543 | ||