[PATCH v7 32/33] net: x25_asy - set name assign type

From: Tom Gundersen
Date: Thu Jul 10 2014 - 04:19:45 EST


Names are given by the first available X.25 channel, so order
of device creation matters.

Signed-off-by: Tom Gundersen <teg@xxxxxxx>
---
drivers/net/wan/x25_asy.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/wan/x25_asy.c b/drivers/net/wan/x25_asy.c
index df6c073..2821f8b 100644
--- a/drivers/net/wan/x25_asy.c
+++ b/drivers/net/wan/x25_asy.c
@@ -81,8 +81,8 @@ static struct x25_asy *x25_asy_alloc(void)
char name[IFNAMSIZ];
sprintf(name, "x25asy%d", i);

- dev = alloc_netdev(sizeof(struct x25_asy), name,
- NET_NAME_UNKNOWN, x25_asy_setup);
+ dev = alloc_netdev(sizeof(struct x25_asy),
+ name, NET_NAME_ENUM, x25_asy_setup);
if (!dev)
return NULL;

--
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/