]> git.baikalelectronics.ru Git - kernel.git/commitdiff
net: smsc95xx: add support for Microchip EVB-LAN8670-USB
authorParthiban Veerasooran <Parthiban.Veerasooran@microchip.com>
Mon, 13 Jun 2022 09:12:07 +0000 (14:42 +0530)
committerDavid S. Miller <davem@davemloft.net>
Mon, 13 Jun 2022 12:33:14 +0000 (13:33 +0100)
This patch adds support for Microchip's EVB-LAN8670-USB 10BASE-T1S
ethernet device to the existing smsc95xx driver by adding the new
USB VID/PID pairs.

Signed-off-by: Parthiban Veerasooran <Parthiban.Veerasooran@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/smsc95xx.c

index bd03e16f98a1827d19965b315f8be3ccd8ed9fe6..35110814ba228b7d122de8af924427879f1ce91f 100644 (file)
@@ -2088,6 +2088,11 @@ static const struct usb_device_id products[] = {
                USB_DEVICE(0x0424, 0x9E08),
                .driver_info = (unsigned long) &smsc95xx_info,
        },
+       {
+               /* Microchip's EVB-LAN8670-USB 10BASE-T1S Ethernet Device */
+               USB_DEVICE(0x184F, 0x0051),
+               .driver_info = (unsigned long)&smsc95xx_info,
+       },
        { },            /* END */
 };
 MODULE_DEVICE_TABLE(usb, products);