diff options
author | A. Maitland Bottoms <bottoms@debian.org> | 2006-03-14 18:44:23 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-20 17:50:02 -0500 |
commit | bf58fbd5e86a43466e638407ff8a4eb7766a3b68 (patch) | |
tree | 5f7910e45218b8b32ee11d84a90ab72376ba157d /drivers | |
parent | 59224f5352542b968c41200954e56c26c4f0a075 (diff) |
[PATCH] USB: ftdi_sio: add Icom ID1 USB product and vendor ids
The Icom ID-1 1.2 GHz band digital transceiver is a new radio
that has a USB interface. With this patch, the ftdi_sio driver
will report "Detected FT8U232AM" and provide a serial device
interface.
Signed-off-by: "A. Maitland Bottoms" <bottoms@debian.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/serial/ftdi_sio.c | 1 | ||||
-rw-r--r-- | drivers/usb/serial/ftdi_sio.h | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index ece52a6328b5..f3af81b4dd29 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
@@ -492,6 +492,7 @@ static struct usb_device_id id_table_combined [] = { | |||
492 | { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) }, | 492 | { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_777_PID) }, |
493 | { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) }, | 493 | { USB_DEVICE(FTDI_VID, FTDI_WESTREX_MODEL_8900F_PID) }, |
494 | { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) }, | 494 | { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) }, |
495 | { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) }, | ||
495 | { }, /* Optional parameter entry */ | 496 | { }, /* Optional parameter entry */ |
496 | { } /* Terminating entry */ | 497 | { } /* Terminating entry */ |
497 | }; | 498 | }; |
diff --git a/drivers/usb/serial/ftdi_sio.h b/drivers/usb/serial/ftdi_sio.h index bdef3b8c731f..8da773c2744d 100644 --- a/drivers/usb/serial/ftdi_sio.h +++ b/drivers/usb/serial/ftdi_sio.h | |||
@@ -146,6 +146,13 @@ | |||
146 | #define KOBIL_CONV_KAAN_PID 0x2021 /* KOBIL_Konverter for KAAN */ | 146 | #define KOBIL_CONV_KAAN_PID 0x2021 /* KOBIL_Konverter for KAAN */ |
147 | 147 | ||
148 | /* | 148 | /* |
149 | * Icom ID-1 digital transceiver | ||
150 | */ | ||
151 | |||
152 | #define ICOM_ID1_VID 0x0C26 | ||
153 | #define ICOM_ID1_PID 0x0004 | ||
154 | |||
155 | /* | ||
149 | * DSS-20 Sync Station for Sony Ericsson P800 | 156 | * DSS-20 Sync Station for Sony Ericsson P800 |
150 | */ | 157 | */ |
151 | 158 | ||