Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1728984 > unrolled thread

[PATCH v5] usb: serial: add vid:pid for Cypress WICED dev board

Started byJeffrey Chu <Jeffrey.chu@cypress.com>
First post2017-09-08 16:40 +0200
Last post2017-09-08 16:50 +0200
Articles 3 — 3 participants

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v5] usb: serial: add vid:pid for Cypress WICED dev board Jeffrey Chu <Jeffrey.chu@cypress.com> - 2017-09-08 16:40 +0200
    RE: [PATCH v5] usb: serial: add vid:pid for Cypress WICED dev board David Laight <David.Laight@ACULAB.COM> - 2017-09-08 16:50 +0200
    Re: [PATCH v5] usb: serial: add vid:pid for Cypress WICED dev board Greg KH <gregkh@linuxfoundation.org> - 2017-09-08 16:50 +0200

#1728984 — [PATCH v5] usb: serial: add vid:pid for Cypress WICED dev board

FromJeffrey Chu <Jeffrey.chu@cypress.com>
Date2017-09-08 16:40 +0200
Subject[PATCH v5] usb: serial: add vid:pid for Cypress WICED dev board
Message-ID<unsBP-8jV-15@gated-at.bofh.it>
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 <jeffrey.chu@cypress.com>
---
 drivers/usb/serial/ftdi_sio.c     | 2 ++
 drivers/usb/serial/ftdi_sio_ids.h | 7 +++++++
 2 files changed, 9 insertions(+)

diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c
index 1cec037..49d1b2d 100644
--- a/drivers/usb/serial/ftdi_sio.c
+++ b/drivers/usb/serial/ftdi_sio.c
@@ -1015,6 +1015,8 @@ static const struct usb_device_id id_table_combined[] = {
 { USB_DEVICE(WICED_VID, WICED_USB20706V2_PID) },
 { USB_DEVICE(TI_VID, TI_CC3200_LAUNCHPAD_PID),
 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
+{ USB_DEVICE(CYPRESS_VID, CYPRESS_WICED_BT_USB_PID) },
+{ USB_DEVICE(CYPRESS_VID, CYPRESS_WICED_WL_USB_PID) },
 { }/* Terminating entry */
 };

diff --git a/drivers/usb/serial/ftdi_sio_ids.h b/drivers/usb/serial/ftdi_sio_ids.h
index 4fcf1ce..d58dc1b 100644
--- a/drivers/usb/serial/ftdi_sio_ids.h
+++ b/drivers/usb/serial/ftdi_sio_ids.h
@@ -692,6 +692,13 @@
 #define WICED_USB20706V2_PID0x6422

 /*
+ * Cypress WICED USB UART
+ */
+#define CYPRESS_VID0x04B4
+#define CYPRESS_WICED_BT_USB_PID0x009B
+#define CYPRESS_WICED_WL_USB_PID0xF900
+
+/*
  * Definitions for ID TECH (www.idt-net.com) devices
  */
 #define IDTECH_VID0x0ACD/* ID TECH Vendor ID */
--
2.7.4


---------------------------------------------------------------
This message and any attachments may contain Cypress (or its
subsidiaries) confidential information. If it has been received
in error, please advise the sender and immediately delete this
message.
---------------------------------------------------------------


This message and any attachments may contain confidential information from Cypress or its subsidiaries. If it has been received in error, please advise the sender and immediately delete this message.

[toc] | [next] | [standalone]


#1728995

FromDavid Laight <David.Laight@ACULAB.COM>
Date2017-09-08 16:50 +0200
Message-ID<unsLv-8nP-1@gated-at.bofh.it>
In reply to#1728984
> To: Jeffrey Chu
..
> Patch is still corrupted :(
> 
> Please try sending it to yourself first to verify you have your email
> client set up correctly.

If you are forced to send from outlook, try copy & paste from wordpad.

	David

[toc] | [prev] | [next] | [standalone]


#1729000

FromGreg KH <gregkh@linuxfoundation.org>
Date2017-09-08 16:50 +0200
Message-ID<unsLv-8nP-3@gated-at.bofh.it>
In reply to#1728984
On Fri, Sep 08, 2017 at 02:35:03PM +0000, Jeffrey Chu wrote:
> 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 <jeffrey.chu@cypress.com>
> ---
>  drivers/usb/serial/ftdi_sio.c     | 2 ++
>  drivers/usb/serial/ftdi_sio_ids.h | 7 +++++++
>  2 files changed, 9 insertions(+)
> 
> diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c
> index 1cec037..49d1b2d 100644
> --- a/drivers/usb/serial/ftdi_sio.c
> +++ b/drivers/usb/serial/ftdi_sio.c
> @@ -1015,6 +1015,8 @@ static const struct usb_device_id id_table_combined[] = {
>  { USB_DEVICE(WICED_VID, WICED_USB20706V2_PID) },
>  { USB_DEVICE(TI_VID, TI_CC3200_LAUNCHPAD_PID),
>  .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
> +{ USB_DEVICE(CYPRESS_VID, CYPRESS_WICED_BT_USB_PID) },
> +{ USB_DEVICE(CYPRESS_VID, CYPRESS_WICED_WL_USB_PID) },

Patch is still corrupted :(

Please try sending it to yourself first to verify you have your email
client set up correctly.

Or just use git send-email, that will also "just work".

thanks,

greg k-h

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web