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

View File

@ -317,7 +317,7 @@ detect_mac80211() {
mode_band="g" mode_band="g"
channel="5" channel="5"
ht_cap=0 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))" ht_cap="$(($ht_cap | $cap))"
done done
ht_capab=""; ht_capab="";