mac80211: fix check for existing config section from r48426

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 48439
lede-17.01
Felix Fietkau 2016-01-21 15:51:52 +00:00
parent df9275b25e
commit d13a1ce9d7
1 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@ lookup_phy() {
local devpath
config_get devpath "$device" path
[ -n "$devpath" ] && {
for _phy in /sys/devices/$devpath/ieee80211/phy*; do
case "$(readlink -f /sys/class/ieee80211/$_phy/device)" in
*$devpath) return 0;;
for phy in $(ls /sys/class/ieee80211 2>/dev/null); do
case "$(readlink -f /sys/class/ieee80211/$phy/device)" in
*$devpath) return;;
esac
done
}