diff options
author | Alexander Bondar <alexander.bondar@intel.com> | 2014-02-03 14:57:28 -0500 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-02-13 06:45:12 -0500 |
commit | 7303dd7f312f0d07a4bf45c62608d5233b5e8062 (patch) | |
tree | 54ecbc28ddb44a5f772e811d07e0b85cefd22745 /drivers/net/wireless/iwlwifi/mvm/debugfs-vif.c | |
parent | f3c221f6ea17f4fea250ac17c7f27ecb71e62465 (diff) |
iwlwifi: mvm: Enable power save on BSS and P2P client in DCM
New FW enables support for power save on BSS and P2P client MACs
simultaneously when they function on different channels (DCM).
Enable this case in the driver after examining new TLV flag -
IWL_UCODE_TLV_FLAGS_BSS_P2P_PS_DCM. Still power management is not
allowed on both MACs if they function on a same channel.
Remove another redundant TLV flag - IWL_UCODE_TLV_FLAGS_P2P_PS that
is not in use anymore. Remove bound_vif_cnt as redundant.
Signed-off-by: Alexander Bondar <alexander.bondar@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/debugfs-vif.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/debugfs-vif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/debugfs-vif.c b/drivers/net/wireless/iwlwifi/mvm/debugfs-vif.c index 29b4396018b1..f64e972191eb 100644 --- a/drivers/net/wireless/iwlwifi/mvm/debugfs-vif.c +++ b/drivers/net/wireless/iwlwifi/mvm/debugfs-vif.c | |||
@@ -591,7 +591,7 @@ void iwl_mvm_vif_dbgfs_register(struct iwl_mvm *mvm, struct ieee80211_vif *vif) | |||
591 | iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM && | 591 | iwlmvm_mod_params.power_scheme != IWL_POWER_SCHEME_CAM && |
592 | ((vif->type == NL80211_IFTYPE_STATION && !vif->p2p) || | 592 | ((vif->type == NL80211_IFTYPE_STATION && !vif->p2p) || |
593 | (vif->type == NL80211_IFTYPE_STATION && vif->p2p && | 593 | (vif->type == NL80211_IFTYPE_STATION && vif->p2p && |
594 | mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_P2P_PS))) | 594 | mvm->fw->ucode_capa.flags & IWL_UCODE_TLV_FLAGS_BSS_P2P_PS_DCM))) |
595 | MVM_DEBUGFS_ADD_FILE_VIF(pm_params, mvmvif->dbgfs_dir, S_IWUSR | | 595 | MVM_DEBUGFS_ADD_FILE_VIF(pm_params, mvmvif->dbgfs_dir, S_IWUSR | |
596 | S_IRUSR); | 596 | S_IRUSR); |
597 | 597 | ||