diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h index b620c557c2a6..03d590924c64 100644 --- a/drivers/net/wireless/ath/ath9k/hw.h +++ b/drivers/net/wireless/ath/ath9k/hw.h | |||
@@ -824,7 +824,6 @@ struct ath_hw { | |||
824 | struct ar5416IniArray ini_japan2484; | 824 | struct ar5416IniArray ini_japan2484; |
825 | struct ar5416IniArray iniModes_9271_ANI_reg; | 825 | struct ar5416IniArray iniModes_9271_ANI_reg; |
826 | struct ar5416IniArray ini_radio_post_sys2ant; | 826 | struct ar5416IniArray ini_radio_post_sys2ant; |
827 | struct ar5416IniArray ini_BTCOEX_MAX_TXPWR; | ||
828 | 827 | ||
829 | struct ar5416IniArray iniMac[ATH_INI_NUM_SPLIT]; | 828 | struct ar5416IniArray iniMac[ATH_INI_NUM_SPLIT]; |
830 | struct ar5416IniArray iniBB[ATH_INI_NUM_SPLIT]; | 829 | struct ar5416IniArray iniBB[ATH_INI_NUM_SPLIT]; |
@@ -1037,6 +1036,11 @@ static inline bool ath9k_hw_btcoex_is_enabled(struct ath_hw *ah) | |||
1037 | { | 1036 | { |
1038 | return ah->btcoex_hw.enabled; | 1037 | return ah->btcoex_hw.enabled; |
1039 | } | 1038 | } |
1039 | static inline bool ath9k_hw_mci_is_enabled(struct ath_hw *ah) | ||
1040 | { | ||
1041 | return ah->btcoex_hw.enabled && (ah->caps.hw_caps & ATH9K_HW_CAP_MCI); | ||
1042 | |||
1043 | } | ||
1040 | void ath9k_hw_btcoex_enable(struct ath_hw *ah); | 1044 | void ath9k_hw_btcoex_enable(struct ath_hw *ah); |
1041 | static inline enum ath_btcoex_scheme | 1045 | static inline enum ath_btcoex_scheme |
1042 | ath9k_hw_get_btcoex_scheme(struct ath_hw *ah) | 1046 | ath9k_hw_get_btcoex_scheme(struct ath_hw *ah) |
@@ -1048,6 +1052,10 @@ static inline bool ath9k_hw_btcoex_is_enabled(struct ath_hw *ah) | |||
1048 | { | 1052 | { |
1049 | return false; | 1053 | return false; |
1050 | } | 1054 | } |
1055 | static inline bool ath9k_hw_mci_is_enabled(struct ath_hw *ah) | ||
1056 | { | ||
1057 | return false; | ||
1058 | } | ||
1051 | static inline void ath9k_hw_btcoex_enable(struct ath_hw *ah) | 1059 | static inline void ath9k_hw_btcoex_enable(struct ath_hw *ah) |
1052 | { | 1060 | { |
1053 | } | 1061 | } |