Thread (8 messages) flat view 8 messages, 4 authors, 2011-03-24

Re: [RFC] usbnet: use eth%d name for known ethernet devices

From: Andy Green <hidden>
Date: 2011-03-23 17:04:56
Also in: lkml

Possibly related (same subject, not in this thread)

On 03/23/2011 04:56 PM, Somebody in the thread at some point said:
The approach taken here is to flag whether a device might be a
point-to-point link with the new FLAG_PTP setting in the usbnet
driver_info. A driver can set both FLAG_PTP and FLAG_ETHER if
it is not sure (e.g. cdc_ether), or just one of the two.
The usbnet framework only looks at the MAC address for device
naming if both flags are set, otherwise it trusts the flag.
quoted hunk ↗ jump to hunk
diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c
index bc86f4b..c98d3a7 100644
--- a/drivers/net/usb/smsc95xx.c
+++ b/drivers/net/usb/smsc95xx.c
@@ -1231,7 +1231,7 @@ static const struct driver_info smsc95xx_info = {
-	.flags		= FLAG_ETHER | FLAG_SEND_ZLP,
+	.flags		= FLAG_ETHER | FLAG_SEND_ZLP | FLAG_REALLY_ETHER,
  		if ((dev->driver_info->flags&  FLAG_ETHER) != 0&&
+		    ((dev->driver_info->flags&  FLAG_PTP) == 0 ||
+		     (net->dev_addr [0]&  0x02) == 0))
  			strcpy (net->name, "eth%d");
So it just takes the approach that all smsc95xx are going to be eth%d? 
Sounds good to me.

-Andy
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help