diff options
author | Ian Abbott <abbotti@mev.co.uk> | 2006-05-04 06:34:25 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-05-09 02:43:55 -0400 |
commit | 20a0f47e18c646bcc772282512fc59e56b2fc968 (patch) | |
tree | 552f6f3d30107ae7546463180d5589e93af1a967 /drivers/usb | |
parent | 77ef6c4d6e23653a79eedacdd6d1d0da7083e59c (diff) |
[PATCH] USB: ftdi_sio: Add support for HCG HF Dual ISO RFID Reader
This patch adds support for ACG Identification Technologies GmbH's HF
Dual ISO Reader (an RFID tag reader) to the ftdi_sio driver's device ID
table. The product ID was supplied by anotonios (anton at goto10 dot
org) on the ftdi-usb-sio-devel list and subsequently verified by myself
(Ian Abbott).
Signed-off-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/serial/ftdi_sio.c | 1 | ||||
-rw-r--r-- | drivers/usb/serial/ftdi_sio.h | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 82151207d814..9498da461036 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
@@ -498,6 +498,7 @@ static struct usb_device_id id_table_combined [] = { | |||
498 | { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) }, | 498 | { USB_DEVICE(FTDI_VID, FTDI_ASK_RDR400_PID) }, |
499 | { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) }, | 499 | { USB_DEVICE(ICOM_ID1_VID, ICOM_ID1_PID) }, |
500 | { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) }, | 500 | { USB_DEVICE(PAPOUCH_VID, PAPOUCH_TMU_PID) }, |
501 | { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) }, | ||
501 | { }, /* Optional parameter entry */ | 502 | { }, /* Optional parameter entry */ |
502 | { } /* Terminating entry */ | 503 | { } /* Terminating entry */ |
503 | }; | 504 | }; |
diff --git a/drivers/usb/serial/ftdi_sio.h b/drivers/usb/serial/ftdi_sio.h index 2c55a5ea9c99..3e4123f09e0d 100644 --- a/drivers/usb/serial/ftdi_sio.h +++ b/drivers/usb/serial/ftdi_sio.h | |||
@@ -426,6 +426,11 @@ | |||
426 | #define PAPOUCH_VID 0x5050 /* Vendor ID */ | 426 | #define PAPOUCH_VID 0x5050 /* Vendor ID */ |
427 | #define PAPOUCH_TMU_PID 0x0400 /* TMU USB Thermometer */ | 427 | #define PAPOUCH_TMU_PID 0x0400 /* TMU USB Thermometer */ |
428 | 428 | ||
429 | /* | ||
430 | * ACG Identification Technologies GmbH products (http://www.acg.de/). | ||
431 | * Submitted by anton -at- goto10 -dot- org. | ||
432 | */ | ||
433 | #define FTDI_ACG_HFDUAL_PID 0xDD20 /* HF Dual ISO Reader (RFID) */ | ||
429 | 434 | ||
430 | /* Commands */ | 435 | /* Commands */ |
431 | #define FTDI_SIO_RESET 0 /* Reset the port */ | 436 | #define FTDI_SIO_RESET 0 /* Reset the port */ |