From: Wouter Paesen Add a new PID for the ftdi_sio driver. It will enable support for PC-DJ's DAC-2 controller module (more information on http://www.pcdjhardware.com/DAC2.asp) Signed-off-by: Wouter Paesen Cc: Greg KH Cc: Ian Abbott Signed-off-by: Andrew Morton --- drivers/usb/serial/ftdi_sio.c | 1 + drivers/usb/serial/ftdi_sio.h | 6 ++++++ 2 files changed, 7 insertions(+) diff -puN drivers/usb/serial/ftdi_sio.c~ftdi_sio-new-pid-for-pcdj-dac2 drivers/usb/serial/ftdi_sio.c --- devel/drivers/usb/serial/ftdi_sio.c~ftdi_sio-new-pid-for-pcdj-dac2 2006-01-05 22:49:35.000000000 -0800 +++ devel-akpm/drivers/usb/serial/ftdi_sio.c 2006-01-05 22:49:35.000000000 -0800 @@ -480,6 +480,7 @@ static struct usb_device_id id_table_com { USB_DEVICE(KOBIL_VID, KOBIL_CONV_B1_PID) }, { USB_DEVICE(KOBIL_VID, KOBIL_CONV_KAAN_PID) }, { USB_DEVICE(POSIFLEX_VID, POSIFLEX_PP7000_PID) }, + { USB_DEVICE(FTDI_VID, FTDI_PCDJ_DAC2_PID) }, { }, /* Optional parameter entry */ { } /* Terminating entry */ }; diff -puN drivers/usb/serial/ftdi_sio.h~ftdi_sio-new-pid-for-pcdj-dac2 drivers/usb/serial/ftdi_sio.h --- devel/drivers/usb/serial/ftdi_sio.h~ftdi_sio-new-pid-for-pcdj-dac2 2006-01-05 22:49:35.000000000 -0800 +++ devel-akpm/drivers/usb/serial/ftdi_sio.h 2006-01-05 22:49:35.000000000 -0800 @@ -51,6 +51,12 @@ #define FTDI_VNHCPCUSB_D_PID 0xfe38 /* Product Id */ /* + * PCDJ use ftdi based dj-controllers. The following PID is for their DAC-2 device + * http://www.pcdjhardware.com/DAC2.asp (PID sent by Wouter Paesen) + * (the VID is the standard ftdi vid (FTDI_VID) */ +#define FTDI_PCDJ_DAC2_PID 0xFA88 + +/* * The following are the values for the Matrix Orbital LCD displays, * which are the FT232BM ( similar to the 8U232AM ) */ _