diff options
author | Charles Yeh <charlesyeh522@gmail.com> | 2025-05-21 21:23:54 +0800 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2025-05-21 17:19:55 +0200 |
commit | d3a889482bd5abf2bbdc1ec3d2d49575aa160c9c (patch) | |
tree | 40a84022992895ecb5a1c077cf626ad57a35772e | |
parent | 92cd405b648605db4da866f3b9818b271ae84ef0 (diff) |
USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB
Add new bcd (0x905) to support PL2303GT-2AB (TYPE_HXN).
Add new bcd (0x1005) to support PL2303GC-Q20 (TYPE_HXN).
Signed-off-by: Charles Yeh <charlesyeh522@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: Johan Hovold <johan@kernel.org>
-rw-r--r-- | drivers/usb/serial/pl2303.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/serial/pl2303.c b/drivers/usb/serial/pl2303.c index 010688dd9e49..22579d0d8ab8 100644 --- a/drivers/usb/serial/pl2303.c +++ b/drivers/usb/serial/pl2303.c @@ -458,6 +458,8 @@ static int pl2303_detect_type(struct usb_serial *serial) case 0x605: case 0x700: /* GR */ case 0x705: + case 0x905: /* GT-2AB */ + case 0x1005: /* GC-Q20 */ return TYPE_HXN; } break; |