diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-05-15 20:02:59 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-05-15 20:02:59 +0000 |
commit | 8a75eac80bfbe0d5065ccd21fadd8d71c57476db (patch) | |
tree | c92c0d6a5f360023220fb1c841e71a445e3a7ba9 /package | |
parent | 645596489ff4759a4767f6e4e6901f21709774a5 (diff) | |
download | upstream-8a75eac80bfbe0d5065ccd21fadd8d71c57476db.tar.gz upstream-8a75eac80bfbe0d5065ccd21fadd8d71c57476db.tar.bz2 upstream-8a75eac80bfbe0d5065ccd21fadd8d71c57476db.zip |
mac80211: fix VHT80 channel allocation (thx, SeG)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 40770
Diffstat (limited to 'package')
-rw-r--r-- | package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh index 00c2108bbf..751fd32933 100644 --- a/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh +++ b/package/kernel/mac80211/files/lib/netifd/wireless/mac80211.sh @@ -166,7 +166,7 @@ mac80211_hostapd_setup_base() { append base_cfg "vht_oper_centr_freq_seg0_idx=$idx" "$N" ;; VHT80) - case "$(( ($channel / 4) % 2 ))" in + case "$(( ($channel / 4) % 4 ))" in 1) idx=$(($channel + 6));; 2) idx=$(($channel + 2));; 3) idx=$(($channel - 2));; |