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>

authored by

Alexandre GRIVEAUX and committed by
Johan Hovold
fc0b3dc9 eb8dbe80

+2
+2
drivers/usb/serial/omninet.c
··· 26 26 27 27 #define ZYXEL_VENDOR_ID 0x0586 28 28 #define ZYXEL_OMNINET_ID 0x1000 29 + #define ZYXEL_OMNI_56K_PLUS_ID 0x1500 29 30 /* This one seems to be a re-branded ZyXEL device */ 30 31 #define BT_IGNITIONPRO_ID 0x2000 31 32 ··· 41 40 42 41 static const struct usb_device_id id_table[] = { 43 42 { USB_DEVICE(ZYXEL_VENDOR_ID, ZYXEL_OMNINET_ID) }, 43 + { USB_DEVICE(ZYXEL_VENDOR_ID, ZYXEL_OMNI_56K_PLUS_ID) }, 44 44 { USB_DEVICE(ZYXEL_VENDOR_ID, BT_IGNITIONPRO_ID) }, 45 45 { } /* Terminating entry */ 46 46 };