From: David Bauer Date: Tue, 19 Jan 2021 01:36:14 +0000 (+0100) Subject: mac80211: fix incorrect parameter X-Git-Tag: v21.02.0-rc1~381 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=8019c54d8a191cfb90c3bf06ff367f601f872fd1;p=openwrt%2Fstaging%2Fhauke.git mac80211: fix incorrect parameter he_mu_beamformer only accepts values of 0 and 1 according to the hostapd documentation. Signed-off-by: David Bauer --- diff --git a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh index b4008f3d58..92c56afd24 100644 --- a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh +++ b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh @@ -346,7 +346,7 @@ mac80211_hostapd_setup_base() { append base_cfg "he_rts_threshold=1023" "$N" append base_cfg "he_su_beamformer=1" "$N" append base_cfg "he_su_beamformee=1" "$N" - append base_cfg "he_mu_beamformer=1023" "$N" + append base_cfg "he_mu_beamformer=1" "$N" fi hostapd_prepare_device_config "$hostapd_conf_file" nl80211