1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 08:31:19 +02:00

hostapd: fixup madwifi turbo modes (#7060)

SVN-Revision: 20675
This commit is contained in:
Jo-Philipp Wich 2010-04-03 15:16:33 +00:00
parent 6c07306d32
commit 38b256105d

@ -134,7 +134,8 @@ hostapd_setup_vif() {
config_get channel "$device" channel
config_get hwmode "$device" hwmode
case "$hwmode" in
*bg) hwmode=g;;
*bg|*gdt|*gst|*fh) hwmode=g;;
*adt|*ast) hwmode=a;;
esac
[ "$channel" = auto ] && channel=
[ -n "$channel" -a -z "$hwmode" ] && wifi_fixup_hwmode "$device"