The patch titled Add one VID/PID to ftdi_sio has been added to the -mm tree. Its filename is add-one-vid-pid-to-ftdi_sio.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Add one VID/PID to ftdi_sio From: Colin Leroy <colin@xxxxxxxxxx> Add the Testo USB interface to the list of devices recognized by the ftdi_sio module. This device is based on a FT232BL chip, and is used as an interface to get data from digital sensors (thermometer, etc). See http://www.testo.com/ Signed-off-by: Colin Leroy <colin@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/usb/serial/ftdi_sio.c | 1 + drivers/usb/serial/ftdi_sio.h | 7 +++++++ 2 files changed, 8 insertions(+) diff -puN drivers/usb/serial/ftdi_sio.c~add-one-vid-pid-to-ftdi_sio drivers/usb/serial/ftdi_sio.c --- a/drivers/usb/serial/ftdi_sio.c~add-one-vid-pid-to-ftdi_sio +++ a/drivers/usb/serial/ftdi_sio.c @@ -502,6 +502,7 @@ static struct usb_device_id id_table_com { USB_DEVICE(FTDI_VID, FTDI_ACG_HFDUAL_PID) }, { USB_DEVICE(FTDI_VID, FTDI_YEI_SERVOCENTER31_PID) }, { USB_DEVICE(FTDI_VID, FTDI_THORLABS_PID) }, + { USB_DEVICE(TESTO_VID, TESTO_USB_INTERFACE_PID) }, { }, /* Optional parameter entry */ { } /* Terminating entry */ }; diff -puN drivers/usb/serial/ftdi_sio.h~add-one-vid-pid-to-ftdi_sio drivers/usb/serial/ftdi_sio.h --- a/drivers/usb/serial/ftdi_sio.h~add-one-vid-pid-to-ftdi_sio +++ a/drivers/usb/serial/ftdi_sio.h @@ -450,6 +450,13 @@ */ #define FTDI_THORLABS_PID 0xfaf0 /* ThorLabs USB motor drivers */ +/* + * Testo products (http://www.testo.com/) + * Submitted by Colin Leroy + */ +#define TESTO_VID 0x128D +#define TESTO_USB_INTERFACE_PID 0x0001 + /* Commands */ #define FTDI_SIO_RESET 0 /* Reset the port */ #define FTDI_SIO_MODEM_CTRL 1 /* Set the modem control register */ _ Patches currently in -mm which might be from colin@xxxxxxxxxx are add-one-vid-pid-to-ftdi_sio.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html