diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-10-18 11:42:42 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-10-18 11:42:42 +0000 |
commit | 12a00edef8bd8c6983a2fbf6734afea745c462ed (patch) | |
tree | 4911f2aca632df163a3171df10cf7ac11e93c3b6 /package/mac80211/files | |
parent | 0e55c42c422ee94509b51a2f64a65cff34928c0c (diff) | |
download | master-187ad058-12a00edef8bd8c6983a2fbf6734afea745c462ed.tar.gz master-187ad058-12a00edef8bd8c6983a2fbf6734afea745c462ed.tar.bz2 master-187ad058-12a00edef8bd8c6983a2fbf6734afea745c462ed.zip |
mac80211: fix typo that broke specifying the phy name directly (deprecated)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33853 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/mac80211/files')
-rw-r--r-- | package/mac80211/files/lib/wifi/mac80211.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/mac80211/files/lib/wifi/mac80211.sh b/package/mac80211/files/lib/wifi/mac80211.sh index d834afea3b..4bf035e5f6 100644 --- a/package/mac80211/files/lib/wifi/mac80211.sh +++ b/package/mac80211/files/lib/wifi/mac80211.sh @@ -186,7 +186,7 @@ mac80211_start_vif() { lookup_phy() { [ -n "$phy" ] && { - [ -d /sys/class/ieee80211/phy ] && return + [ -d /sys/class/ieee80211/$phy ] && return } local devpath |