From ed878f25c6d748586903253515925194a7013218 Mon Sep 17 00:00:00 2001 From: Travis Kemen Date: Wed, 4 Jul 2012 00:25:46 +0000 Subject: [PATCH] mac80211: make channel bandwidth setting generic SVN-Revision: 32596 --- package/mac80211/files/lib/wifi/mac80211.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index 8bb9c42675..6b907b6a2f 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -312,8 +312,9 @@ enable_mac80211() { } } - config_get ath9k_chanbw "$device" ath9k_chanbw - [ -n "$ath9k_chanbw" -a -d /sys/kernel/debug/ieee80211/$phy/ath9k ] && echo "$ath9k_chanbw" > /sys/kernel/debug/ieee80211/$phy/ath9k/chanbw + config_get chanbw "$device" chanbw + [ -n "$chanbw" -a -d /sys/kernel/debug/ieee80211/$phy/ath9k ] && echo "$chanbw" > /sys/kernel/debug/ieee80211/$phy/ath9k/chanbw + [ -n "$chanbw" -a -d /sys/kernel/debug/ieee80211/$phy/ath5k ] && echo "$chanbw" > /sys/kernel/debug/ieee80211/$phy/ath5k/bwmode [ "$channel" = "auto" -o "$channel" = "0" ] || { fixed=1 -- 2.30.2