diff mbox

smsc95xx: add support for LAN9512 and LAN9514

Message ID 1241194042-6800-1-git-send-email-steve.glendinning@smsc.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Steve Glendinning May 1, 2009, 4:07 p.m. UTC
LAN9512 and LAN9514 are USB hubs with an integrated 10/100 ethernet
controller.  Logically this looks like an ethernet controller (similar
to LAN9500) permanently attached to one of the hub's downstream ports.

This patch adds the usb device id of the new ethernet controller to the
smsc95xx driver.  This id is the same in both new devices.

Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com>
---
 drivers/net/usb/smsc95xx.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

Comments

David Miller May 1, 2009, 10:27 p.m. UTC | #1
From: Steve Glendinning <steve.glendinning@smsc.com>
Date: Fri,  1 May 2009 17:07:22 +0100

> LAN9512 and LAN9514 are USB hubs with an integrated 10/100 ethernet
> controller.  Logically this looks like an ethernet controller (similar
> to LAN9500) permanently attached to one of the hub's downstream ports.
> 
> This patch adds the usb device id of the new ethernet controller to the
> smsc95xx driver.  This id is the same in both new devices.
> 
> Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com>

Applied.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c
index dc16653..14440fa 100644
--- a/drivers/net/usb/smsc95xx.c
+++ b/drivers/net/usb/smsc95xx.c
@@ -1231,6 +1231,11 @@  static const struct usb_device_id products[] = {
 		USB_DEVICE(0x0424, 0x9500),
 		.driver_info = (unsigned long) &smsc95xx_info,
 	},
+	{
+		/* SMSC9512/9514 USB Hub & Ethernet Device */
+		USB_DEVICE(0x0424, 0xec00),
+		.driver_info = (unsigned long) &smsc95xx_info,
+	},
 	{ },		/* END */
 };
 MODULE_DEVICE_TABLE(usb, products);