iwlwifi: rs: disable MIMO only if allowed in configuration
authorAlexander Bondar <alexander.bondar@intel.com>
Tue, 28 Jul 2015 13:50:51 +0000 (16:50 +0300)
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Tue, 18 Aug 2015 07:25:21 +0000 (10:25 +0300)
Fix bug where MIMO is disabled for low latency TX on P2P VIF
regardless of configuration. Make it dependent on
IWL_MVM_RS_DISABLE_P2P_MIMO compilation option. Change configuration
so that MIMO will be disabled only in SDIO platforms.

Signed-off-by: Alexander Bondar <alexander.bondar@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
drivers/net/wireless/iwlwifi/mvm/rs.c

index 19a79262e0a0ea98c80139188ccac09f07b1ff87..5ae9c8aa868fa445063e956a26ac1444caf5d8dd 100644 (file)
@@ -177,7 +177,8 @@ static bool rs_mimo_allow(struct iwl_mvm *mvm, struct ieee80211_sta *sta,
 
        mvmsta = iwl_mvm_sta_from_mac80211(sta);
        mvmvif = iwl_mvm_vif_from_mac80211(mvmsta->vif);
-       if (iwl_mvm_vif_low_latency(mvmvif) && mvmsta->vif->p2p)
+       if (IWL_MVM_RS_DISABLE_P2P_MIMO &&
+           iwl_mvm_vif_low_latency(mvmvif) && mvmsta->vif->p2p)
                return false;
 
        if (mvm->nvm_data->sku_cap_mimo_disabled)
This page took 0.027305 seconds and 5 git commands to generate.