summaryrefslogtreecommitdiffstats
path: root/package/broadcom-wl/patches/110-add_number_to_dev_name.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2012-11-25 20:11:15 +0000
committerHauke Mehrtens <hauke@hauke-m.de>2012-11-25 20:11:15 +0000
commite9b6c999f54476d531f10d3eff1f41b145cf589d (patch)
tree75bad9b7cf094cb2bc8e1550bd08324997fd1161 /package/broadcom-wl/patches/110-add_number_to_dev_name.patch
parent38fced86eeed50fc6e841f5b8f3abd285a286117 (diff)
downloadmaster-31e0f0ae-e9b6c999f54476d531f10d3eff1f41b145cf589d.tar.gz
master-31e0f0ae-e9b6c999f54476d531f10d3eff1f41b145cf589d.tar.bz2
master-31e0f0ae-e9b6c999f54476d531f10d3eff1f41b145cf589d.zip
broadcom-wl: fix two problems when more then one wifi card is available.
* 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. SVN-Revision: 34381
Diffstat (limited to 'package/broadcom-wl/patches/110-add_number_to_dev_name.patch')
-rw-r--r--package/broadcom-wl/patches/110-add_number_to_dev_name.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/broadcom-wl/patches/110-add_number_to_dev_name.patch b/package/broadcom-wl/patches/110-add_number_to_dev_name.patch
new file mode 100644
index 0000000000..13ce72741e
--- /dev/null
+++ b/package/broadcom-wl/patches/110-add_number_to_dev_name.patch
@@ -0,0 +1,11 @@
+--- 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;