Skip to content

Commit c5bfdb4

Browse files
ilanpeer2jmberg-intel
authored andcommitted
wifi: iwlwifi: mvm: Do not warn if valid link pair was not found
It is possible that though multiple links are enabled we cannot enabled EMLSR enable more than a single link, e.g., all valid links are on the same band etc. Thus, do not warn in case no valid link pair is found. Fixes: b9be67f ("wifi: iwlwifi: mvm: Add basic link selection logic") Signed-off-by: Ilan Peer <[email protected]> Reviewed-by: Gregory Greenman <[email protected]> Signed-off-by: Miri Korenblit <[email protected]> Link: https://msgid.link/20231219215605.142e57a05230.I7cfe78c94c3d15c4c744bccadd8f187e43594932@changeid Signed-off-by: Johannes Berg <[email protected]>
1 parent 6ba40cd commit c5bfdb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/wireless/intel/iwlwifi/mvm/mld-mac80211.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,7 +716,7 @@ void iwl_mvm_mld_select_links(struct iwl_mvm *mvm, struct ieee80211_vif *vif,
716716
}
717717
}
718718

719-
if (WARN_ON(!new_active_links))
719+
if (!new_active_links)
720720
return;
721721

722722
if (vif->active_links != new_active_links)

0 commit comments

Comments
 (0)