diff options
author | Travis Kemen <thepeople@openwrt.org> | 2012-07-04 00:25:46 +0000 |
---|---|---|
committer | Travis Kemen <thepeople@openwrt.org> | 2012-07-04 00:25:46 +0000 |
commit | 999499062137f7808dcb0c01e72aea21accf29d7 (patch) | |
tree | e5c5375cb79146175fbba6e132c5ed3cea0c6c11 /package | |
parent | 8dfadf358539730b0d49aaf77b279ffb06d1e219 (diff) | |
download | upstream-999499062137f7808dcb0c01e72aea21accf29d7.tar.gz upstream-999499062137f7808dcb0c01e72aea21accf29d7.tar.bz2 upstream-999499062137f7808dcb0c01e72aea21accf29d7.zip |
mac80211: make channel bandwidth setting generic
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32596 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 5 |
1 files 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 |