1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-02 17:11:19 +02:00

mac80211: fix ht capability detection (thx, stintel)

SVN-Revision: 19144
This commit is contained in:
Felix Fietkau 2010-01-15 02:55:29 +00:00
parent aa2ebbf15e
commit b8ef670202

@ -317,7 +317,7 @@ detect_mac80211() {
mode_band="g"
channel="5"
ht_cap=0
for cap in $(iw phy "$dev" info | grep 'HT capabilities' | cut -d: -f2); do
for cap in $(iw phy "$dev" info | grep 'Capabilities:' | cut -d: -f2); do
ht_cap="$(($ht_cap | $cap))"
done
ht_capab="";