diff options
author | Max Mansfield <max.m.mansfield@gmail.com> | 2015-03-02 18:38:02 -0700 |
---|---|---|
committer | Johan Hovold <johan@kernel.org> | 2015-03-03 07:47:06 +0100 |
commit | c7d373c3f0da2b2b78c4b1ce5ae41485b3ef848c (patch) | |
tree | f92573557cac69d54e992c3c2a47737fd6367dcf /drivers/usb/serial/ftdi_sio_ids.h | |
parent | aa91def41a7bb1fd65492934ce6bea19202b6080 (diff) | |
download | linux-stable-c7d373c3f0da2b2b78c4b1ce5ae41485b3ef848c.tar.gz linux-stable-c7d373c3f0da2b2b78c4b1ce5ae41485b3ef848c.tar.bz2 linux-stable-c7d373c3f0da2b2b78c4b1ce5ae41485b3ef848c.zip |
usb: ftdi_sio: Add jtag quirk support for Cyber Cortex AV boards
This patch integrates Cyber Cortex AV boards with the existing
ftdi_jtag_quirk in order to use serial port 0 with JTAG which is
required by the manufacturers' software.
Steps: 2
[ftdi_sio_ids.h]
1. Defined the device PID
[ftdi_sio.c]
2. Added a macro declaration to the ids array, in order to enable the
jtag quirk for the device.
Signed-off-by: Max Mansfield <max.m.mansfield@gmail.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
Diffstat (limited to 'drivers/usb/serial/ftdi_sio_ids.h')
-rw-r--r-- | drivers/usb/serial/ftdi_sio_ids.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/serial/ftdi_sio_ids.h b/drivers/usb/serial/ftdi_sio_ids.h index 4d3da89cd8dd..56b1b55c4751 100644 --- a/drivers/usb/serial/ftdi_sio_ids.h +++ b/drivers/usb/serial/ftdi_sio_ids.h @@ -38,6 +38,9 @@ #define FTDI_LUMEL_PD12_PID 0x6002 +/* Cyber Cortex AV by Fabulous Silicon (http://fabuloussilicon.com) */ +#define CYBER_CORTEX_AV_PID 0x8698 + /* * Marvell OpenRD Base, Client * http://www.open-rd.org |