mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-13 03:50:03 -04:00
wifi: iwlwifi: mld: add debug log instead of warning
During link selection if the links does not meet the valid grade criteria then add debug log instead of warning. Signed-off-by: Somashekhar Puttagangaiah <somashekhar.puttagangaiah@intel.com> Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com> Link: https://patch.msgid.link/20250510214621.2593268ca988.I9786126cd1078caec8587b166a7f8735300c951d@changeid
This commit is contained in:
committed by
Miri Korenblit
parent
015b5fee8f
commit
6ed7430bdd
@@ -974,8 +974,11 @@ static void _iwl_mld_select_links(struct iwl_mld *mld,
|
||||
n_data = iwl_mld_set_link_sel_data(mld, vif, data, usable_links,
|
||||
&best_idx);
|
||||
|
||||
if (WARN(!n_data, "Couldn't find a valid grade for any link!\n"))
|
||||
if (!n_data) {
|
||||
IWL_DEBUG_EHT(mld,
|
||||
"Couldn't find a valid grade for any link!\n");
|
||||
return;
|
||||
}
|
||||
|
||||
/* Default to selecting the single best link */
|
||||
best_link = &data[best_idx];
|
||||
|
||||
Reference in New Issue
Block a user