summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/main.c
diff options
context:
space:
mode:
authorLuis R. Rodriguez2009-09-10 00:15:55 +0200
committerJohn W. Linville2009-10-07 22:39:23 +0200
commit5e1972929532bfc3a26b1782c8551d3c56306ffd (patch)
tree2135a76e062d88737f860eb213be9017997919ad /drivers/net/wireless/ath/ath9k/main.c
parentath9k: simplify ath_btcoex_bt_stomp() (diff)
downloadkernel-qcow2-linux-5e1972929532bfc3a26b1782c8551d3c56306ffd.tar.gz
kernel-qcow2-linux-5e1972929532bfc3a26b1782c8551d3c56306ffd.tar.xz
kernel-qcow2-linux-5e1972929532bfc3a26b1782c8551d3c56306ffd.zip
ath9k: now move ath9k_hw_btcoex_set_weight() to btcoex.c
After some necessary cleanups we now move ath9k_hw_btcoex_set_weight() to where it belongs. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/main.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/main.c18
1 files changed, 2 insertions, 16 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c
index 0788a2724416..42772d25491a 100644
--- a/drivers/net/wireless/ath/ath9k/main.c
+++ b/drivers/net/wireless/ath/ath9k/main.c
@@ -1332,21 +1332,6 @@ static void ath_detect_bt_priority(struct ath_softc *sc)
}
}
-static void ath9k_hw_btcoex_set_weight(struct ath_hw *ah,
- u32 bt_weight,
- u32 wlan_weight)
-{
- struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
-
- btcoex_hw->bt_coex_weights = SM(bt_weight, AR_BTCOEX_BT_WGHT) |
- SM(wlan_weight, AR_BTCOEX_WL_WGHT);
-}
-
-static void ath9k_hw_btcoex_init_weight(struct ath_hw *ah)
-{
- ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT, AR_STOMP_LOW_WLAN_WGHT);
-}
-
/*
* Configures appropriate weight based on stomp type.
*/
@@ -2200,7 +2185,8 @@ static int ath9k_start(struct ieee80211_hw *hw)
if ((ah->btcoex_hw.scheme != ATH_BTCOEX_CFG_NONE) &&
!ah->btcoex_hw.enabled) {
- ath9k_hw_btcoex_init_weight(ah);
+ ath9k_hw_btcoex_set_weight(ah, AR_BT_COEX_WGHT,
+ AR_STOMP_LOW_WLAN_WGHT);
ath9k_hw_btcoex_enable(ah);
ath_pcie_aspm_disable(sc);