Message ID | 20241128022227.717101-1-wojackbb@gmail.com |
---|---|
State | New |
Headers | show |
Series | [v2] USB: serial: option: add MediaTek T7XX compositions Add the MediaTek T7XX compositions: | expand |
On Thu, Nov 28, 2024 at 10:22:27AM +0800, wojackbb@gmail.com wrote: > From: Jack Wu <wojackbb@gmail.com> Your commit message appears to have been corrupted. The first sentence of the message has been merged with the commit summary (i.e. is included in Subject): Add the MediaTek T7XX compositions: > T: Bus=03 Lev=01 Prnt=01 Port=05 Cnt=01 Dev#= 74 Spd=480 MxCh= 0 > D: Ver= 2.10 Cls=ef(misc ) Sub=02 Prot=01 MxPS=64 #Cfgs= 1 > P: Vendor=0e8d ProdID=7129 Rev= 0.01 > S: Manufacturer=MediaTek Inc. > S: Product=USB DATA CARD > ------------------------------- > | If Number | Function | > ------------------------------- > | 2 | USB AP Log Port | > ------------------------------- > | 3 | USB AP GNSS Port| > ------------------------------- > | 4 | USB AP META Port| > ------------------------------- > | 5 | ADB port | > ------------------------------- > | 6 | USB MD AT Port | > ------------------------------ > | 7 | USB MD META Port| > ------------------------------- > | 8 | USB NTZ Port | > ------------------------------- > | 9 | USB Debug port | > ------------------------------- > > Signed-off-by: Jack Wu <wojackbb@gmail.com> > v2: add NCTRL and more description Thanks for the v2. Next time, please put the change log below the --- line so that it does not included in the commit message when I apply the patch. I fixed up the above when applying. Johan
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 4f18f189f309..1b798244b675 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -2244,6 +2244,8 @@ static const struct usb_device_id option_ids[] = { .driver_info = NCTRL(2) }, { USB_DEVICE_AND_INTERFACE_INFO(MEDIATEK_VENDOR_ID, 0x7127, 0xff, 0x00, 0x00), .driver_info = NCTRL(2) | NCTRL(3) | NCTRL(4) }, + { USB_DEVICE_AND_INTERFACE_INFO(MEDIATEK_VENDOR_ID, 0x7129, 0xff, 0x00, 0x00), /* MediaTek T7XX */ + .driver_info = NCTRL(2) | NCTRL(3) | NCTRL(4) }, { USB_DEVICE(CELLIENT_VENDOR_ID, CELLIENT_PRODUCT_MEN200) }, { USB_DEVICE(CELLIENT_VENDOR_ID, CELLIENT_PRODUCT_MPL200), .driver_info = RSVD(1) | RSVD(4) },