diff mbox

[v7,20/33] net: irlan - set name assign type

Message ID 1404980258-30853-21-git-send-email-teg@jklm.no
State Changes Requested, archived
Delegated to: David Miller
Headers show

Commit Message

Tom Gundersen July 10, 2014, 8:17 a.m. UTC
Signed-off-by: Tom Gundersen <teg@jklm.no>
Cc: Samuel Ortiz <samuel@sortiz.org>
Cc: Dragos Foianu <dragos.foianu@gmail.com>
---
 include/net/irda/irlan_eth.h  | 2 +-
 net/irda/irlan/irlan_common.c | 2 +-
 net/irda/irlan/irlan_eth.c    | 7 ++++---
 3 files changed, 6 insertions(+), 5 deletions(-)
diff mbox

Patch

diff --git a/include/net/irda/irlan_eth.h b/include/net/irda/irlan_eth.h
index de5c816..00fd2f8 100644
--- a/include/net/irda/irlan_eth.h
+++ b/include/net/irda/irlan_eth.h
@@ -25,7 +25,7 @@ 
 #ifndef IRLAN_ETH_H
 #define IRLAN_ETH_H
 
-struct net_device *alloc_irlandev(const char *name);
+struct net_device *alloc_irlandev(const char *name, unsigned char name_assign_type);
 int  irlan_eth_receive(void *instance, void *sap, struct sk_buff *skb);
 
 void irlan_eth_flow_indication( void *instance, void *sap, LOCAL_FLOW flow);
diff --git a/net/irda/irlan/irlan_common.c b/net/irda/irlan/irlan_common.c
index 7ac4d1b..5a458b0 100644
--- a/net/irda/irlan/irlan_common.c
+++ b/net/irda/irlan/irlan_common.c
@@ -204,7 +204,7 @@  static struct irlan_cb *irlan_open(__u32 saddr, __u32 daddr)
 	IRDA_DEBUG(2, "%s()\n", __func__ );
 
 	/* Create network device with irlan */
-	dev = alloc_irlandev(eth ? "eth%d" : "irlan%d");
+	dev = alloc_irlandev(eth ? "eth%d" : "irlan%d", NET_NAME_ENUM);
 	if (!dev)
 		return NULL;
 
diff --git a/net/irda/irlan/irlan_eth.c b/net/irda/irlan/irlan_eth.c
index dc13f1a..b62a822 100644
--- a/net/irda/irlan/irlan_eth.c
+++ b/net/irda/irlan/irlan_eth.c
@@ -94,10 +94,11 @@  static void irlan_eth_setup(struct net_device *dev)
  *    Allocate network device and control block
  *
  */
-struct net_device *alloc_irlandev(const char *name)
+struct net_device *alloc_irlandev(const char *name,
+				  unsigned char name_assign_type)
 {
-	return alloc_netdev(sizeof(struct irlan_cb), name, NET_NAME_UNKNOWN,
-			    irlan_eth_setup);
+	return alloc_netdev(sizeof(struct irlan_cb), name,
+			    name_assign_type, irlan_eth_setup);
 }
 
 /*