Message ID | 20231121111626.64804-1-SpriteOvO@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | USB: serial: option: add Luat Air72*U series products | expand |
> Co-developed-by: Yangyu Chen <cyy@cyyself.name> > Signed-off-by: Yangyu Chen <cyy@cyyself.name> > Signed-off-by: Sprite <SpriteOvO@gmail.com> "Sprite" is an odd name, is that how things are signed by you? thanks, greg k-h
I've been using that name for a long time in open source communities, here's my GitHub profile: https://github.com/SpriteOvO Linux has allowed pseudonymous contributions since earlier this year, does this apply to me? If you are concerned that "Sprite" will cause confusion, I can use "Asuna", which is the name I used on IM chats and social media platforms. I apologize for the confusion. On 11/21/23 19:25, Greg KH wrote: >> Co-developed-by: Yangyu Chen <cyy@cyyself.name> >> Signed-off-by: Yangyu Chen <cyy@cyyself.name> >> Signed-off-by: Sprite <SpriteOvO@gmail.com> > "Sprite" is an odd name, is that how things are signed by you? > > thanks, > > greg k-h
On Tue, Nov 21, 2023 at 08:02:17PM +0800, SpriteOvO wrote: > I've been using that name for a long time in open source communities, here's > my GitHub profile: > > https://github.com/SpriteOvO > > Linux has allowed pseudonymous contributions since earlier this year, does > this apply to me? If you are concerned that "Sprite" will cause confusion, I > can use "Asuna", which is the name I used on IM chats and social media > platforms. A "unique" identifier that you use to identify yourself is fine, "Sprite" is not really unique :) thanks, greg k-h
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index 45dcfaadaf98..b76cb9a096f7 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -609,6 +609,8 @@ static void option_instat_callback(struct urb *urb); #define UNISOC_VENDOR_ID 0x1782 /* TOZED LT70-C based on UNISOC SL8563 uses UNISOC's vendor ID */ #define TOZED_PRODUCT_LT70C 0x4055 +/* Luat Air72*U series based on UNISOC UIS8910 uses UNISOC's vendor ID */ +#define LUAT_PRODUCT_AIR720U 0x4e00 /* Device flags */ @@ -2271,6 +2273,7 @@ static const struct usb_device_id option_ids[] = { { USB_DEVICE_AND_INTERFACE_INFO(SIERRA_VENDOR_ID, SIERRA_PRODUCT_EM9191, 0xff, 0xff, 0x40) }, { USB_DEVICE_AND_INTERFACE_INFO(SIERRA_VENDOR_ID, SIERRA_PRODUCT_EM9191, 0xff, 0, 0) }, { USB_DEVICE_AND_INTERFACE_INFO(UNISOC_VENDOR_ID, TOZED_PRODUCT_LT70C, 0xff, 0, 0) }, + { USB_DEVICE_AND_INTERFACE_INFO(UNISOC_VENDOR_ID, LUAT_PRODUCT_AIR720U, 0xff, 0, 0) }, { } /* Terminating entry */ }; MODULE_DEVICE_TABLE(usb, option_ids);