aboutsummaryrefslogtreecommitdiffstats
path: root/package/broadcom-wl/patches/110-add_number_to_dev_name.patch
blob: 4f0ed01bd8a9d98cea2fb3782e3868c22f701caa (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/driver/wl_linux.c
+++ b/driver/wl_linux.c
@@ -1410,7 +1410,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;