diff options
author | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2011-02-11 11:13:14 -0500 |
---|---|---|
committer | Wey-Yi Guy <wey-yi.w.guy@intel.com> | 2011-02-21 13:09:16 -0500 |
commit | 73b78a22720087d2d384bdd49e9c25500ba73edd (patch) | |
tree | 41345e49bdc3279325990e27b4d0d43bb97ed6cc | |
parent | 46d0637a128f2f555c1f7be02cd65c45b92b2a60 (diff) |
iwlwifi: enable 2-wire bt coex support for non-combo device
For non-combo devices, 2-wire BT coex is needed to make sure BT coex
still function with external BT devices
Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index c04d99124ca8..9965215697bb 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
@@ -2744,9 +2744,11 @@ static void iwl_alive_start(struct iwl_priv *priv) | |||
2744 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); | 2744 | priv->cfg->ops->hcmd->set_rxon_chain(priv, ctx); |
2745 | } | 2745 | } |
2746 | 2746 | ||
2747 | if (priv->cfg->bt_params && | 2747 | if (!priv->cfg->bt_params || (priv->cfg->bt_params && |
2748 | !priv->cfg->bt_params->advanced_bt_coexist) { | 2748 | !priv->cfg->bt_params->advanced_bt_coexist)) { |
2749 | /* Configure Bluetooth device coexistence support */ | 2749 | /* |
2750 | * default is 2-wire BT coexexistence support | ||
2751 | */ | ||
2750 | priv->cfg->ops->hcmd->send_bt_config(priv); | 2752 | priv->cfg->ops->hcmd->send_bt_config(priv); |
2751 | } | 2753 | } |
2752 | 2754 | ||