From 804a5ec71bed4fcd31fac5470bbe3ea913c73315 Mon Sep 17 00:00:00 2001 From: hauke Date: Sun, 25 Nov 2012 20:11:15 +0000 Subject: 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. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34381 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/broadcom-wl/patches/110-add_number_to_dev_name.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/broadcom-wl/patches/110-add_number_to_dev_name.patch (limited to 'package/broadcom-wl/patches/110-add_number_to_dev_name.patch') 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 000000000..13ce72741 --- /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; -- cgit v1.2.3