[openwrt/openwrt] hostapd: fix max_oper_chwidth setting for HE
LEDE Commits
lede-commits at lists.infradead.org
Tue Nov 23 09:44:35 PST 2021
nbd pushed a commit to openwrt/openwrt.git, branch openwrt-21.02:
https://git.openwrt.org/d9373c5922183e2799e361f4787a7f027b098929
commit d9373c5922183e2799e361f4787a7f027b098929
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Tue May 18 19:08:28 2021 +0200
hostapd: fix max_oper_chwidth setting for HE
Signed-off-by: Felix Fietkau <nbd at nbd.name>
(cherry-picked from commit 2319cf4ec048e50a7d3885d19dc27663b45e258d)
---
package/network/services/hostapd/files/hostapd.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh
index bbbbf9994b..b5388ee46c 100644
--- a/package/network/services/hostapd/files/hostapd.sh
+++ b/package/network/services/hostapd/files/hostapd.sh
@@ -1128,9 +1128,9 @@ wpa_supplicant_set_fixed_freq() {
VHT*) append network_data "vht=1" "$N$T";;
esac
case "$htmode" in
- VHT80) append network_data "max_oper_chwidth=1" "$N$T";;
- VHT160) append network_data "max_oper_chwidth=2" "$N$T";;
- VHT20|VHT40) append network_data "max_oper_chwidth=0" "$N$T";;
+ HE80|VHT80) append network_data "max_oper_chwidth=1" "$N$T";;
+ HE160|VHT160) append network_data "max_oper_chwidth=2" "$N$T";;
+ HE20|HE40|VHT20|VHT40) append network_data "max_oper_chwidth=0" "$N$T";;
*) append network_data "disable_vht=1" "$N$T";;
esac
}
More information about the lede-commits
mailing list