summaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2024-06-25 18:51:10 +0200
committerJohannes Berg <johannes.berg@intel.com>2024-06-26 10:35:13 +0200
commitf9068fe4fd49f9e4409c30546d7e16238942ce62 (patch)
tree7061859ba3cb9f8d0e96aea20a761b0391fb81fa /drivers/net
parentwifi: iwlwifi: mvm: use IWL_FW_CHECK for link ID check (diff)
downloadlinux-f9068fe4fd49f9e4409c30546d7e16238942ce62.tar.xz
linux-f9068fe4fd49f9e4409c30546d7e16238942ce62.zip
wifi: iwlwifi: mvm: always unblock EMLSR on ROC end
Since we always block EMLSR for ROC, we also need to always unblock it, even if we don't have a P2P device interface. Fix this. Fixes: a1efeb823084 ("wifi: iwlwifi: mvm: Block EMLSR when a p2p/softAP vif is active") Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com> Link: https://patch.msgid.link/20240625194805.96bbf98b716d.Id5a36954f8ebaa95142fd3d3a7a52bab5363b0bd@changeid Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/wireless/intel/iwlwifi/mvm/time-event.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/time-event.c b/drivers/net/wireless/intel/iwlwifi/mvm/time-event.c
index d73e19a8fdda..98490866a7f5 100644
--- a/drivers/net/wireless/intel/iwlwifi/mvm/time-event.c
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/time-event.c
@@ -127,7 +127,7 @@ static void iwl_mvm_cleanup_roc(struct iwl_mvm *mvm)
iwl_mvm_rm_aux_sta(mvm);
}
- if (vif && !IS_ERR_OR_NULL(bss_vif))
+ if (!IS_ERR_OR_NULL(bss_vif))
iwl_mvm_unblock_esr(mvm, bss_vif, IWL_MVM_ESR_BLOCKED_ROC);
mutex_unlock(&mvm->mutex);
}