mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 09:41:54 +09:00
USB: Microchip VID mislabeled as Hornby VID in ftdi_sio.
commit c1cee1d840 upstream.
Microchip VID (0x04d8) was mislabeled as Hornby VID according to USB-IDs.
A Full Speed USB Demo Board PID (0x000a) was mislabeled as
Hornby Elite (an Digital Command Controller Console for model railways).
Most likely the Hornby based their design on
PIC18F87J50 Full Speed USB Demo Board.
Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6c2242dbfb
commit
b8d6466aac
@@ -796,7 +796,7 @@ static struct usb_device_id id_table_combined [] = {
|
||||
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
|
||||
{ USB_DEVICE(ADI_VID, ADI_GNICEPLUS_PID),
|
||||
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
|
||||
{ USB_DEVICE(HORNBY_VID, HORNBY_ELITE_PID) },
|
||||
{ USB_DEVICE(MICROCHIP_VID, MICROCHIP_USB_BOARD_PID) },
|
||||
{ USB_DEVICE(JETI_VID, JETI_SPC1201_PID) },
|
||||
{ USB_DEVICE(MARVELL_VID, MARVELL_SHEEVAPLUG_PID),
|
||||
.driver_info = (kernel_ulong_t)&ftdi_jtag_quirk },
|
||||
|
||||
@@ -532,10 +532,14 @@
|
||||
#define ADI_GNICEPLUS_PID 0xF001
|
||||
|
||||
/*
|
||||
* Hornby Elite
|
||||
* Microchip Technology, Inc.
|
||||
*
|
||||
* MICROCHIP_VID (0x04D8) and MICROCHIP_USB_BOARD_PID (0x000A) are also used by:
|
||||
* Hornby Elite - Digital Command Control Console
|
||||
* http://www.hornby.com/hornby-dcc/controllers/
|
||||
*/
|
||||
#define HORNBY_VID 0x04D8
|
||||
#define HORNBY_ELITE_PID 0x000A
|
||||
#define MICROCHIP_VID 0x04D8
|
||||
#define MICROCHIP_USB_BOARD_PID 0x000A /* CDC RS-232 Emulation Demo */
|
||||
|
||||
/*
|
||||
* RATOC REX-USB60F
|
||||
|
||||
Reference in New Issue
Block a user