mirror of https://gitee.com/openkylin/linux.git
USB: pl2303: add id for SMART device
Add vendor and product ID for the SMART USB to serial adapter. These were meant to be used with their SMART Board whiteboards, but can be re-purposed for other tasks. Tested and working (at at least 9600 bps). Signed-off-by: Eric Benoit <eric@ecks.ca> Cc: stable <stable@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
68c79e5756
commit
598f0b7035
|
@ -92,6 +92,7 @@ static const struct usb_device_id id_table[] = {
|
|||
{ USB_DEVICE(SANWA_VENDOR_ID, SANWA_PRODUCT_ID) },
|
||||
{ USB_DEVICE(ADLINK_VENDOR_ID, ADLINK_ND6530_PRODUCT_ID) },
|
||||
{ USB_DEVICE(WINCHIPHEAD_VENDOR_ID, WINCHIPHEAD_USBSER_PRODUCT_ID) },
|
||||
{ USB_DEVICE(SMART_VENDOR_ID, SMART_PRODUCT_ID) },
|
||||
{ } /* Terminating entry */
|
||||
};
|
||||
|
||||
|
|
|
@ -148,3 +148,8 @@
|
|||
/* WinChipHead USB->RS 232 adapter */
|
||||
#define WINCHIPHEAD_VENDOR_ID 0x4348
|
||||
#define WINCHIPHEAD_USBSER_PRODUCT_ID 0x5523
|
||||
|
||||
/* SMART USB Serial Adapter */
|
||||
#define SMART_VENDOR_ID 0x0b8c
|
||||
#define SMART_PRODUCT_ID 0x2303
|
||||
|
||||
|
|
Loading…
Reference in New Issue