diff options
author | 2025-05-21 21:23:54 +0800 | |
---|---|---|
committer | 2025-06-10 07:17:10 -0400 | |
commit | f43c67847f70d2eef66c6fb7fcfb9e2f897ce637 (patch) | |
tree | ca02bdbe27bdc54b7962571d1248e2fd998bde21 | |
parent | usb: storage: Ignore UAS driver for SanDisk 3.2 Gen2 storage device (diff) | |
download | laptop-kernel-f43c67847f70d2eef66c6fb7fcfb9e2f897ce637.tar.xz laptop-kernel-f43c67847f70d2eef66c6fb7fcfb9e2f897ce637.zip |
USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB
commit d3a889482bd5abf2bbdc1ec3d2d49575aa160c9c upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.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; |