]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
net: Add support for SMSC LAN9530, LAN9730 and LAN89530
authorSteve Glendinning <steve.glendinning@smsc.com>
Mon, 11 Apr 2011 01:59:27 +0000 (18:59 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 11 Apr 2011 01:59:27 +0000 (18:59 -0700)
This patch adds support for SMSC's LAN9530, LAN9730 and LAN89530 USB
ethernet controllers to the existing smsc95xx driver by adding
their new USB VID/PID pairs.

Signed-off-by: Steve Glendinning <steve.glendinning@smsc.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/smsc95xx.c

index 727874d9deb6d886fd9d357484c57d3ee899d079..47a6c870b51fae361b39de950ee4a523ced52475 100644 (file)
@@ -1313,6 +1313,21 @@ static const struct usb_device_id products[] = {
                USB_DEVICE(0x0424, 0x9909),
                .driver_info = (unsigned long) &smsc95xx_info,
        },
+       {
+               /* SMSC LAN9530 USB Ethernet Device */
+               USB_DEVICE(0x0424, 0x9530),
+               .driver_info = (unsigned long) &smsc95xx_info,
+       },
+       {
+               /* SMSC LAN9730 USB Ethernet Device */
+               USB_DEVICE(0x0424, 0x9730),
+               .driver_info = (unsigned long) &smsc95xx_info,
+       },
+       {
+               /* SMSC LAN89530 USB Ethernet Device */
+               USB_DEVICE(0x0424, 0x9E08),
+               .driver_info = (unsigned long) &smsc95xx_info,
+       },
        { },            /* END */
 };
 MODULE_DEVICE_TABLE(usb, products);