* [PATCH] Add Proliic new chip: PL2303GC-Q20 & PL2303GT-2AB
@ 2025-05-21 13:23 Charles Yeh
2025-05-21 15:19 ` Johan Hovold
0 siblings, 1 reply; 6+ messages in thread
From: Charles Yeh @ 2025-05-21 13:23 UTC (permalink / raw)
To: gregkh, johan, linux-usb; +Cc: charles-yeh, joy-yeh, Charles Yeh
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>
---
drivers/usb/serial/pl2303.c | 2 ++
1 file changed, 2 insertions(+)
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;
--
2.48.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Add Proliic new chip: PL2303GC-Q20 & PL2303GT-2AB
2025-05-21 13:23 [PATCH] Add Proliic new chip: PL2303GC-Q20 & PL2303GT-2AB Charles Yeh
@ 2025-05-21 15:19 ` Johan Hovold
2025-05-21 15:21 ` Johan Hovold
0 siblings, 1 reply; 6+ messages in thread
From: Johan Hovold @ 2025-05-21 15:19 UTC (permalink / raw)
To: Charles Yeh; +Cc: gregkh, linux-usb, charles-yeh, joy-yeh
Hi Charles,
On Wed, May 21, 2025 at 09:23:54PM +0800, Charles Yeh wrote:
> 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>
Please remember to use the common commit summary prefix for this driver.
I changed the summary to:
USB: serial: pl2303: a new chip PL2303GC-Q20 and PL2303GT-2AB
when applying (with CC stable added).
Johan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add Proliic new chip: PL2303GC-Q20 & PL2303GT-2AB
2025-05-21 15:19 ` Johan Hovold
@ 2025-05-21 15:21 ` Johan Hovold
2025-05-22 7:54 ` Charles Yeh
0 siblings, 1 reply; 6+ messages in thread
From: Johan Hovold @ 2025-05-21 15:21 UTC (permalink / raw)
To: Charles Yeh; +Cc: gregkh, linux-usb, charles-yeh, joy-yeh
On Wed, May 21, 2025 at 05:19:06PM +0200, Johan Hovold wrote:
> I changed the summary to:
>
> USB: serial: pl2303: a new chip PL2303GC-Q20 and PL2303GT-2AB
That was supposed to say:
USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB
Johan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add Proliic new chip: PL2303GC-Q20 & PL2303GT-2AB
2025-05-21 15:21 ` Johan Hovold
@ 2025-05-22 7:54 ` Charles Yeh
2025-05-22 8:42 ` Johan Hovold
0 siblings, 1 reply; 6+ messages in thread
From: Charles Yeh @ 2025-05-22 7:54 UTC (permalink / raw)
To: Johan Hovold; +Cc: gregkh, linux-usb, charles-yeh, joy-yeh
Hi Johan,
> That was supposed to say:
>
> USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB
>
Thank you for the suggestion.
I will send a new patch file later.
Charles.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add Proliic new chip: PL2303GC-Q20 & PL2303GT-2AB
2025-05-22 7:54 ` Charles Yeh
@ 2025-05-22 8:42 ` Johan Hovold
2025-05-22 8:55 ` Charles Yeh
0 siblings, 1 reply; 6+ messages in thread
From: Johan Hovold @ 2025-05-22 8:42 UTC (permalink / raw)
To: Charles Yeh; +Cc: gregkh, linux-usb, charles-yeh, joy-yeh
On Thu, May 22, 2025 at 03:54:44PM +0800, Charles Yeh wrote:
> > That was supposed to say:
> >
> > USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB
> Thank you for the suggestion.
> I will send a new patch file later.
There's no need to send a new version of this patch as I fixed up the
summary when applying. It was just a reminder for future patches.
Johan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Add Proliic new chip: PL2303GC-Q20 & PL2303GT-2AB
2025-05-22 8:42 ` Johan Hovold
@ 2025-05-22 8:55 ` Charles Yeh
0 siblings, 0 replies; 6+ messages in thread
From: Charles Yeh @ 2025-05-22 8:55 UTC (permalink / raw)
To: Johan Hovold; +Cc: gregkh, linux-usb, charles-yeh, joy-yeh
Hi Johan,
> There's no need to send a new version of this patch as I fixed up the
> summary when applying. It was just a reminder for future patches.
Thanks again for your guidance and support.
Charles.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-05-22 8:55 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-21 13:23 [PATCH] Add Proliic new chip: PL2303GC-Q20 & PL2303GT-2AB Charles Yeh
2025-05-21 15:19 ` Johan Hovold
2025-05-21 15:21 ` Johan Hovold
2025-05-22 7:54 ` Charles Yeh
2025-05-22 8:42 ` Johan Hovold
2025-05-22 8:55 ` Charles Yeh
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox