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