diff options
author | Kamil Lorenc <kamil@re-ws.pl> | 2020-09-01 10:57:38 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-09-12 14:18:55 +0200 |
commit | 8b61bb0b2d57b58f59eb218c049f2f4c2a8bf7a7 (patch) | |
tree | 0bfebfe391a65902df334978b3ec3bd364164edf | |
parent | 346fefa823259c86eaef64102796f1be284ac41a (diff) | |
download | linux-stable-8b61bb0b2d57b58f59eb218c049f2f4c2a8bf7a7.tar.gz linux-stable-8b61bb0b2d57b58f59eb218c049f2f4c2a8bf7a7.tar.bz2 linux-stable-8b61bb0b2d57b58f59eb218c049f2f4c2a8bf7a7.zip |
net: usb: dm9601: Add USB ID of Keenetic Plus DSL
[ Upstream commit a609d0259183a841621f252e067f40f8cc25d6f6 ]
Keenetic Plus DSL is a xDSL modem that uses dm9620 as its USB interface.
Signed-off-by: Kamil Lorenc <kamil@re-ws.pl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/net/usb/dm9601.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/usb/dm9601.c b/drivers/net/usb/dm9601.c index b91f92e4e5f2..915ac75b55fc 100644 --- a/drivers/net/usb/dm9601.c +++ b/drivers/net/usb/dm9601.c @@ -625,6 +625,10 @@ static const struct usb_device_id products[] = { USB_DEVICE(0x0a46, 0x1269), /* DM9621A USB to Fast Ethernet Adapter */ .driver_info = (unsigned long)&dm9601_info, }, + { + USB_DEVICE(0x0586, 0x3427), /* ZyXEL Keenetic Plus DSL xDSL modem */ + .driver_info = (unsigned long)&dm9601_info, + }, {}, // END }; |