diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-04-30 18:09:59 +0300 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-05-15 19:49:26 +0300 |
commit | 4d66449a273e44b9bb1a5fc1cd5937c1905ebebe (patch) | |
tree | c75a99ae8195ef8af8b616aa0a371b0447f6d2af /drivers/net/wireless/iwlwifi/mvm/mac80211.c | |
parent | 1504f48df44be8b7cf349d3ef595059b12055be5 (diff) | |
download | blackbird-op-linux-4d66449a273e44b9bb1a5fc1cd5937c1905ebebe.tar.gz blackbird-op-linux-4d66449a273e44b9bb1a5fc1cd5937c1905ebebe.zip |
iwlwifi: mvm: BT Coex - send channel inhibition before association
The firmware needs to know on what channel we run before we
set the association bit in the MAC context. Change a bit the
flow to achieve this.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/mac80211.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/mac80211.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/iwlwifi/mvm/mac80211.c index 137228bf4a11..22a445f23aa1 100644 --- a/drivers/net/wireless/iwlwifi/mvm/mac80211.c +++ b/drivers/net/wireless/iwlwifi/mvm/mac80211.c @@ -2186,10 +2186,10 @@ static void iwl_mvm_change_chanctx(struct ieee80211_hw *hw, return; mutex_lock(&mvm->mutex); + iwl_mvm_bt_coex_vif_change(mvm); iwl_mvm_phy_ctxt_changed(mvm, phy_ctxt, &ctx->min_def, ctx->rx_chains_static, ctx->rx_chains_dynamic); - iwl_mvm_bt_coex_vif_change(mvm); mutex_unlock(&mvm->mutex); } |