1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-19 07:23:41 +03:00

wlcompat probe bugfix

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@809 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2005-05-06 08:09:51 +00:00
parent b3d3038878
commit a11667c939

View File

@ -698,12 +698,10 @@ static int __init wlcompat_init()
int found = 0, i;
char *devname = "eth0";
while (!found && devname[3] < '3') {
devname[3]++;
dev = dev_get_by_name(devname);
while (!found && (dev = dev_get_by_name(devname))) {
if ((wl_ioctl(dev, WLC_GET_MAGIC, &i, sizeof(i)) == 0) && i == WLC_IOCTL_MAGIC)
found = 1;
devname[3]++;
}
if (!found) {