Skip to content

Commit a6c215e

Browse files
Jeffrey Chujhovold
authored andcommitted
USB: serial: ftdi_sio: add id for Cypress WICED dev board
Add CYPRESS_VID vid and CYPRESS_WICED_BT_USB and CYPRESS_WICED_WL_USB device IDs to ftdi_sio driver. Signed-off-by: Jeffrey Chu <[email protected]> Cc: stable <[email protected]> Signed-off-by: Johan Hovold <[email protected]>
1 parent 2bd6bf0 commit a6c215e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

drivers/usb/serial/ftdi_sio.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1015,6 +1015,8 @@ static const struct usb_device_id id_table_combined[] = {
10151015
{ USB_DEVICE(WICED_VID, WICED_USB20706V2_PID) },
10161016
{ USB_DEVICE(TI_VID, TI_CC3200_LAUNCHPAD_PID),
10171017
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
1018+
{ USB_DEVICE(CYPRESS_VID, CYPRESS_WICED_BT_USB_PID) },
1019+
{ USB_DEVICE(CYPRESS_VID, CYPRESS_WICED_WL_USB_PID) },
10181020
{ } /* Terminating entry */
10191021
};
10201022

drivers/usb/serial/ftdi_sio_ids.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,13 @@
609609
#define ADI_GNICE_PID 0xF000
610610
#define ADI_GNICEPLUS_PID 0xF001
611611

612+
/*
613+
* Cypress WICED USB UART
614+
*/
615+
#define CYPRESS_VID 0x04B4
616+
#define CYPRESS_WICED_BT_USB_PID 0x009B
617+
#define CYPRESS_WICED_WL_USB_PID 0xF900
618+
612619
/*
613620
* Microchip Technology, Inc.
614621
*

0 commit comments

Comments
 (0)