projects
/
openwrt
/
staging
/
nbd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2b7e6b
)
wlcompat probe bugfix
author
Mike Baker
<mbm@openwrt.org>
Fri, 6 May 2005 08:09:51 +0000
(08:09 +0000)
committer
Mike Baker
<mbm@openwrt.org>
Fri, 6 May 2005 08:09:51 +0000
(08:09 +0000)
SVN-Revision: 809
openwrt/package/openwrt/wlcompat.c
patch
|
blob
|
history
diff --git
a/openwrt/package/openwrt/wlcompat.c
b/openwrt/package/openwrt/wlcompat.c
index 74dcdf223389c280da8eb8323dc8df950deb86db..3c163fd18a8dac69ff0fd89311b42a1ddde2b827 100644
(file)
--- a/
openwrt/package/openwrt/wlcompat.c
+++ b/
openwrt/package/openwrt/wlcompat.c
@@
-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) {