--- a/drivers/net/usb/ax88179_178a.c	2022-03-13 13:23:37.000000000 -0700
+++ b/drivers/net/usb/ax88179_178a.c	2022-03-17 13:15:55.635038471 -0700
@@ -1872,6 +1872,45 @@
 	.tx_fixup = ax88179_tx_fixup,
 };
 
+static const struct driver_info at_umc2000_info = {
+        .description = "Allied Telesis AT-UMC2000 SuperSpeed USB Gigabit Ethernet Adapter",
+        .bind   = ax88179_bind,
+        .unbind = ax88179_unbind,
+        .status = ax88179_status,
+        .link_reset = ax88179_link_reset,
+        .reset  = ax88179_reset,
+        .stop   = ax88179_stop,
+        .flags  = FLAG_ETHER | FLAG_FRAMING_AX,
+        .rx_fixup = ax88179_rx_fixup,
+        .tx_fixup = ax88179_tx_fixup,
+};
+
+static const struct driver_info at_umc2000sp_info = {
+        .description = "Allied Telesis AT-UMC2000/SP SuperSpeed USB Gigabit Ethernet Adapter",
+        .bind   = ax88179_bind,
+        .unbind = ax88179_unbind,
+        .status = ax88179_status,
+        .link_reset = ax88179_link_reset,
+        .reset  = ax88179_reset,
+        .stop   = ax88179_stop,
+        .flags  = FLAG_ETHER | FLAG_FRAMING_AX,
+        .rx_fixup = ax88179_rx_fixup,
+        .tx_fixup = ax88179_tx_fixup,
+};
+
+static const struct driver_info at_umc200_info = {
+        .description = "Allied Telesis AT-UMC200 SuperSpeed USB 100Mb Ethernet Adapter",
+        .bind   = ax88179_bind,
+        .unbind = ax88179_unbind,
+        .status = ax88179_status,
+        .link_reset = ax88179_link_reset,
+        .reset  = ax88179_reset,
+        .stop   = ax88179_stop,
+        .flags  = FLAG_ETHER | FLAG_FRAMING_AX,
+        .rx_fixup = ax88179_rx_fixup,
+        .tx_fixup = ax88179_tx_fixup,
+};
+
 static const struct usb_device_id products[] = {
 {
 	/* ASIX AX88179 10/100/1000 */
@@ -1913,6 +1952,18 @@
 	/* Magic Control Technology U3-A9003 USB 3.0 Gigabit Ethernet Adapter */
 	USB_DEVICE(0x0711, 0x0179),
 	.driver_info = (unsigned long)&mct_info,
+}, {
+        /* Allied Telesis AT-UMC2000 SuperSpeed USB Gigabit Ethernet Adapter */
+        USB_DEVICE(0x07c9, 0x000e),
+        .driver_info = (unsigned long)&at_umc2000_info,
+}, {
+        /* Allied Telesis AT-UMC200 SuperSpeed USB 100Mb Ethernet Adapter */
+        USB_DEVICE(0x07c9, 0x000f),
+        .driver_info = (unsigned long)&at_umc200_info,
+}, {
+        /* Allied Telesis AT-UMC2000/SP SuperSpeed USB Gigabit Ethernet Adapter */
+        USB_DEVICE(0x07c9, 0x0010),
+        .driver_info = (unsigned long)&at_umc2000sp_info,
 },
 	{ },
 };
