diff options
author | Alexandre GRIVEAUX <agriveaux@deutnet.info> | 2021-05-23 18:35:21 +0200 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2021-05-25 08:56:02 +0200 |
commit | fc0b3dc9a11771c3919eaaaf9d649138b095aa0f (patch) | |
tree | 33f8eb9faee47e4d9540572ed93911fbe27016c9 /drivers/usb | |
parent | eb8dbe80326c3d44c1e38ee4f40e0d8d3e06f2d0 (diff) | |
download | linux-fc0b3dc9a11771c3919eaaaf9d649138b095aa0f.tar.gz linux-fc0b3dc9a11771c3919eaaaf9d649138b095aa0f.tar.bz2 linux-fc0b3dc9a11771c3919eaaaf9d649138b095aa0f.zip |
USB: serial: omninet: add device id for Zyxel Omni 56K Plus
Add device id for Zyxel Omni 56K Plus modem, this modem include:
USB chip:
NetChip
NET2888
Main chip:
901041A
F721501APGF
Another modem using the same chips is the Zyxel Omni 56K DUO/NEO,
could be added with the right USB ID.
Signed-off-by: Alexandre GRIVEAUX <agriveaux@deutnet.info>
Cc: stable@vger.kernel.org
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/serial/omninet.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/serial/omninet.c b/drivers/usb/serial/omninet.c index 83c62f920c50..c2ece584724e 100644 --- a/drivers/usb/serial/omninet.c +++ b/drivers/usb/serial/omninet.c @@ -26,6 +26,7 @@ #define ZYXEL_VENDOR_ID 0x0586 #define ZYXEL_OMNINET_ID 0x1000 +#define ZYXEL_OMNI_56K_PLUS_ID 0x1500 /* This one seems to be a re-branded ZyXEL device */ #define BT_IGNITIONPRO_ID 0x2000 @@ -40,6 +41,7 @@ static void omninet_port_remove(struct usb_serial_port *port); static const struct usb_device_id id_table[] = { { USB_DEVICE(ZYXEL_VENDOR_ID, ZYXEL_OMNINET_ID) }, + { USB_DEVICE(ZYXEL_VENDOR_ID, ZYXEL_OMNI_56K_PLUS_ID) }, { USB_DEVICE(ZYXEL_VENDOR_ID, BT_IGNITIONPRO_ID) }, { } /* Terminating entry */ }; |