We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 109c9ff commit 59464a2Copy full SHA for 59464a2
drivers/net/usb/lan78xx.c
@@ -64,6 +64,8 @@
64
#define LAN7801_USB_PRODUCT_ID (0x7801)
65
#define LAN78XX_EEPROM_MAGIC (0x78A5)
66
#define LAN78XX_OTP_MAGIC (0x78F3)
67
+#define AT29M2AF_USB_VENDOR_ID (0x07C9)
68
+#define AT29M2AF_USB_PRODUCT_ID (0x0012)
69
70
#define MII_READ 1
71
#define MII_WRITE 0
@@ -4174,6 +4176,10 @@ static const struct usb_device_id products[] = {
4174
4176
/* LAN7801 USB Gigabit Ethernet Device */
4175
4177
USB_DEVICE(LAN78XX_USB_VENDOR_ID, LAN7801_USB_PRODUCT_ID),
4178
},
4179
+ {
4180
+ /* ATM2-AF USB Gigabit Ethernet Device */
4181
+ USB_DEVICE(AT29M2AF_USB_VENDOR_ID, AT29M2AF_USB_PRODUCT_ID),
4182
+ },
4183
{},
4184
};
4185
MODULE_DEVICE_TABLE(usb, products);
0 commit comments