Commit d0dd31f3 authored by Sheng-Hui J. Chu's avatar Sheng-Hui J. Chu Committed by Ben Hutchings

USB: serial: ftdi_sio: add device ID for WICED USB UART dev board

commit ae34d12c upstream.

BCM20706V2_EVAL is a WICED dev board designed with FT2232H USB 2.0
UART/FIFO IC.

To support BCM920706V2_EVAL dev board for WICED development on Linux.
Add the VID(0a5c) and PID(6422) to ftdi_sio driver to allow loading
ftdi_sio for this board.
Signed-off-by: default avatarSheng-Hui J. Chu <s.jeffrey.chu@gmail.com>
Signed-off-by: default avatarJohan Hovold <johan@kernel.org>
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent b2127a33
...@@ -1023,6 +1023,7 @@ static const struct usb_device_id id_table_combined[] = { ...@@ -1023,6 +1023,7 @@ static const struct usb_device_id id_table_combined[] = {
{ USB_DEVICE(ICPDAS_VID, ICPDAS_I7560U_PID) }, { USB_DEVICE(ICPDAS_VID, ICPDAS_I7560U_PID) },
{ USB_DEVICE(ICPDAS_VID, ICPDAS_I7561U_PID) }, { USB_DEVICE(ICPDAS_VID, ICPDAS_I7561U_PID) },
{ USB_DEVICE(ICPDAS_VID, ICPDAS_I7563U_PID) }, { USB_DEVICE(ICPDAS_VID, ICPDAS_I7563U_PID) },
{ USB_DEVICE(WICED_VID, WICED_USB20706V2_PID) },
{ } /* Terminating entry */ { } /* Terminating entry */
}; };
......
...@@ -678,6 +678,12 @@ ...@@ -678,6 +678,12 @@
#define INTREPID_VALUECAN_PID 0x0601 #define INTREPID_VALUECAN_PID 0x0601
#define INTREPID_NEOVI_PID 0x0701 #define INTREPID_NEOVI_PID 0x0701
/*
* WICED USB UART
*/
#define WICED_VID 0x0A5C
#define WICED_USB20706V2_PID 0x6422
/* /*
* Definitions for ID TECH (www.idt-net.com) devices * Definitions for ID TECH (www.idt-net.com) devices
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment