projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c30e9a8
)
wifi: mac80211: fix typo in HE MCS check
author
Benjamin Berg
<benjamin.berg@intel.com>
Wed, 1 Jan 2025 05:05:30 +0000
(07:05 +0200)
committer
Johannes Berg
<johannes.berg@intel.com>
Mon, 13 Jan 2025 14:26:44 +0000
(15:26 +0100)
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>
net/mac80211/mlme.c
patch
|
blob
|
blame
|
history
diff --git
a/net/mac80211/mlme.c
b/net/mac80211/mlme.c
index 2318cb0789dfe69b9ddb714ee55eafdfcbcb6a64..f663f5961ab12c3331a7f24632cbea9d1455855f 100644
(file)
--- a/
net/mac80211/mlme.c
+++ b/
net/mac80211/mlme.c
@@
-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_
r
x_val, ap_op_val);
+ nss, ap_rx_val, ap_
t
x_val, ap_op_val);
return false;
}
}