Commit d0839d757e6294921c31b1c4ca4f1dcc5df63bcd

Authored by George McCollister
Committed by Greg Kroah-Hartman
1 parent c03890ff5e

USB: ftdi_sio: add NovaTech OrionLXm product ID

The NovaTech OrionLXm uses an onboard FTDI serial converter for JTAG and
console access.

Here is the lsusb output:
Bus 004 Device 123: ID 0403:7c90 Future Technology Devices
International, Ltd

Signed-off-by: George McCollister <george.mccollister@gmail.com>
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Showing 2 changed files with 7 additions and 0 deletions Side-by-side Diff

drivers/usb/serial/ftdi_sio.c
... ... @@ -580,6 +580,8 @@
580 580 { USB_DEVICE(FTDI_VID, FTDI_TAVIR_STK500_PID) },
581 581 { USB_DEVICE(FTDI_VID, FTDI_TIAO_UMPA_PID),
582 582 .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
  583 + { USB_DEVICE(FTDI_VID, FTDI_NT_ORIONLXM_PID),
  584 + .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
583 585 /*
584 586 * ELV devices:
585 587 */
drivers/usb/serial/ftdi_sio_ids.h
... ... @@ -538,6 +538,11 @@
538 538 */
539 539 #define FTDI_TIAO_UMPA_PID 0x8a98 /* TIAO/DIYGADGET USB Multi-Protocol Adapter */
540 540  
  541 +/*
  542 + * NovaTech product ids (FTDI_VID)
  543 + */
  544 +#define FTDI_NT_ORIONLXM_PID 0x7c90 /* OrionLXm Substation Automation Platform */
  545 +
541 546  
542 547 /********************************/
543 548 /** third-party VID/PID combos **/