mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 18:20:38 +02:00
804a5ec71b
* The device should get a unique name at the beginning and not wl%d. * load the nvram just one time into the own buffer, also when there is more than one device. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34381 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
341 B
Diff
12 lines
341 B
Diff
--- a/driver/wl_linux.c
|
|
+++ b/driver/wl_linux.c
|
|
@@ -1412,7 +1412,7 @@ wl_alloc_if(wl_info_t *wl, int iftype, u
|
|
dev = alloc_etherdev(sizeof(wl_if_t));
|
|
wlif = netdev_priv(dev);
|
|
bzero(wlif, sizeof(wl_if_t));
|
|
- strncpy(dev->name, name, IFNAMSIZ);
|
|
+ snprintf(dev->name, IFNAMSIZ, name, subunit);
|
|
|
|
wlif->type = iftype;
|
|
wlif->dev = dev;
|