|
@@ -30,6 +30,10 @@ int htc_modparam_nohwcrypt;
|
|
|
module_param_named(nohwcrypt, htc_modparam_nohwcrypt, int, 0444);
|
|
|
MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption");
|
|
|
|
|
|
+static int ath9k_htc_btcoex_enable;
|
|
|
+module_param_named(btcoex_enable, ath9k_htc_btcoex_enable, int, 0444);
|
|
|
+MODULE_PARM_DESC(btcoex_enable, "Enable wifi-BT coexistence");
|
|
|
+
|
|
|
#define CHAN2G(_freq, _idx) { \
|
|
|
.center_freq = (_freq), \
|
|
|
.hw_value = (_idx), \
|
|
@@ -635,6 +639,7 @@ static int ath9k_init_priv(struct ath9k_htc_priv *priv,
|
|
|
common->hw = priv->hw;
|
|
|
common->priv = priv;
|
|
|
common->debug_mask = ath9k_debug;
|
|
|
+ common->btcoex_enabled = ath9k_htc_btcoex_enable == 1;
|
|
|
|
|
|
spin_lock_init(&priv->beacon_lock);
|
|
|
spin_lock_init(&priv->tx.tx_lock);
|