diff mbox

[1/4] dm9601: add support for dm9621a based dongle

Message ID 1387190135-17052-2-git-send-email-peter@korsgaard.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Peter Korsgaard Dec. 16, 2013, 10:35 a.m. UTC
dm9621a is functionally identical to dm9620, so the existing handling can
directly be used.

Thanks to Davicom for sending me a dongle.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 drivers/net/usb/dm9601.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

David Miller Dec. 18, 2013, 10:47 p.m. UTC | #1
From: Peter Korsgaard <peter@korsgaard.com>
Date: Mon, 16 Dec 2013 11:35:32 +0100

> dm9621a is functionally identical to dm9620, so the existing handling can
> directly be used.
> 
> Thanks to Davicom for sending me a dongle.
> 
> Signed-off-by: Peter Korsgaard <peter@korsgaard.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/dm9601.c b/drivers/net/usb/dm9601.c
index c6867f9..8e88572 100644
--- a/drivers/net/usb/dm9601.c
+++ b/drivers/net/usb/dm9601.c
@@ -594,6 +594,10 @@  static const struct usb_device_id products[] = {
 	 USB_DEVICE(0x0a46, 0x9620),	/* DM9620 USB to Fast Ethernet Adapter */
 	 .driver_info = (unsigned long)&dm9601_info,
 	 },
+	{
+	 USB_DEVICE(0x0a46, 0x9621),	/* DM9621A USB to Fast Ethernet Adapter */
+	 .driver_info = (unsigned long)&dm9601_info,
+	},
 	{},			// END
 };