From ad28808f3f5984f3751b7ae741ecfd568f2f30c7 Mon Sep 17 00:00:00 2001 From: Johannes Berg Date: Wed, 15 Apr 2026 14:42:01 +0200 Subject: [PATCH] wifi: mac80211: use max BW for HT channel width update When an HT channel width update comes in, don't use the capability of the station, but rather set it to max as the capability will be taken into account anyway when using the value. Reviewed-by: Miriam Rachel Korenblit Link: https://patch.msgid.link/20260415144514.bab6e4195d78.I9683605229ed1b75ff5a9c14e967762e88b3fc36@changeid Signed-off-by: Johannes Berg --- net/mac80211/ht.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/mac80211/ht.c b/net/mac80211/ht.c index 8f76440e9e48..7d587f968a7f 100644 --- a/net/mac80211/ht.c +++ b/net/mac80211/ht.c @@ -631,7 +631,7 @@ void ieee80211_ht_handle_chanwidth_notif(struct ieee80211_local *local, if (chanwidth == IEEE80211_HT_CHANWIDTH_20MHZ) max_bw = IEEE80211_STA_RX_BW_20; else - max_bw = ieee80211_sta_cap_rx_bw(link_sta); + max_bw = IEEE80211_STA_RX_BW_MAX; /* set cur_max_bandwidth and recalc sta bw */ link_sta->cur_max_bandwidth = max_bw;