From d7f91d01b0ff27fb442949c4f300dce23451ba4f Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 28 May 2005 18:13:24 +0000 Subject: don't return an error if a part of SIOCSIWMODE fails (fixes wlcompat for newer wl driver) git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1092 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/package/wlcompat/wlcompat.c | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) (limited to 'target/linux/package') diff --git a/target/linux/package/wlcompat/wlcompat.c b/target/linux/package/wlcompat/wlcompat.c index d010e2bc8..e39fe6889 100644 --- a/target/linux/package/wlcompat/wlcompat.c +++ b/target/linux/package/wlcompat/wlcompat.c @@ -485,18 +485,11 @@ static int wlcompat_ioctl(struct net_device *dev, return -EINVAL; } - if (wl_ioctl(dev, WLC_SET_PASSIVE, &passive, sizeof(passive)) < 0) - return -EINVAL; - if (wl_ioctl(dev, WLC_SET_MONITOR, &passive, sizeof(passive)) < 0) - return -EINVAL; - if (wl_ioctl(dev, WLC_SET_WET, &wet, sizeof(wet)) < 0) - return -EINVAL; - if (ap >= 0) - if (wl_ioctl(dev, WLC_SET_AP, &ap, sizeof(ap)) < 0) - return -EINVAL; - if (infra >= 0) - if (wl_ioctl(dev, WLC_SET_INFRA, &infra, sizeof(infra)) < 0) - return -EINVAL; + wl_ioctl(dev, WLC_SET_PASSIVE, &passive, sizeof(passive)); + wl_ioctl(dev, WLC_SET_MONITOR, &passive, sizeof(passive)); + wl_ioctl(dev, WLC_SET_WET, &wet, sizeof(wet)); + wl_ioctl(dev, WLC_SET_AP, &ap, sizeof(ap)); + wl_ioctl(dev, WLC_SET_INFRA, &infra, sizeof(infra)); break; -- cgit v1.2.3