mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 05:26:07 +00:00
wifi: mac80211: fix typo in HE MCS check
It printed the AP RX MCS value instead of the TX one. Signed-off-by: Benjamin Berg <benjamin.berg@intel.com> Reviewed-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com> Link: https://patch.msgid.link/20250101070249.743c7c1914f4.I1e5888ac6c8324d078fe91d01da31daa76d0e328@changeid Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
c30e9a8558
commit
2996843287
@ -419,7 +419,7 @@ ieee80211_verify_peer_he_mcs_support(struct ieee80211_sub_if_data *sdata,
|
||||
ap_rx_val < ap_op_val || ap_tx_val < ap_op_val) {
|
||||
sdata_info(sdata,
|
||||
"Invalid rates for %d Nss, rx %d, tx %d oper %d, disable HE\n",
|
||||
nss, ap_rx_val, ap_rx_val, ap_op_val);
|
||||
nss, ap_rx_val, ap_tx_val, ap_op_val);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user