2021-02-23 16:46:56

by Sebastian Reichel

[permalink] [raw]
Subject: [PATCH] USB: serial: cp210x: add some more GE USB IDs

GE CS1000 has some more custom USB IDs for CP2102N; add them
to the driver to have working auto-probing.

Signed-off-by: Sebastian Reichel <[email protected]>
---
drivers/usb/serial/cp210x.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c
index 9e1c609792fb..0d2d2a3baa07 100644
--- a/drivers/usb/serial/cp210x.c
+++ b/drivers/usb/serial/cp210x.c
@@ -201,6 +201,8 @@ static const struct usb_device_id id_table[] = {
{ USB_DEVICE(0x1901, 0x0194) }, /* GE Healthcare Remote Alarm Box */
{ USB_DEVICE(0x1901, 0x0195) }, /* GE B850/B650/B450 CP2104 DP UART interface */
{ USB_DEVICE(0x1901, 0x0196) }, /* GE B850 CP2105 DP UART interface */
+ { USB_DEVICE(0x1901, 0x0197) }, /* GE CS1000 Display serial interface */
+ { USB_DEVICE(0x1901, 0x0198) }, /* GE CS1000 M.2 Key E serial interface */
{ USB_DEVICE(0x199B, 0xBA30) }, /* LORD WSDA-200-USB */
{ USB_DEVICE(0x19CF, 0x3000) }, /* Parrot NMEA GPS Flight Recorder */
{ USB_DEVICE(0x1ADB, 0x0001) }, /* Schweitzer Engineering C662 Cable */
--
2.30.0


2021-03-03 01:28:41

by Johan Hovold

[permalink] [raw]
Subject: Re: [PATCH] USB: serial: cp210x: add some more GE USB IDs

On Tue, Feb 23, 2021 at 05:44:18PM +0100, Sebastian Reichel wrote:
> GE CS1000 has some more custom USB IDs for CP2102N; add them
> to the driver to have working auto-probing.
>
> Signed-off-by: Sebastian Reichel <[email protected]>

Now applied, thanks.

Johan