USB: tty: SprogII DCC controller identifiers

Someone on rmweb reminded me this had been overlooked from ages ago..

Add the identifiers for the Sprog II USB. This is a DCC control interface
using the FTDI-SIO hardware: http://www.sprog-dcc.co.uk/. People have been
using it with insmod options for ages, this just puts it into the driver
data.

Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

Alan Cox and committed by
Greg Kroah-Hartman
f2ee6955 a4b18809

+4
+1
drivers/usb/serial/ftdi_sio.c
··· 166 { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) }, 167 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) }, 168 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) }, 169 { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) }, 170 { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) }, 171 { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
··· 166 { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) }, 167 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_IOBOARD_PID) }, 168 { USB_DEVICE(INTERBIOMETRICS_VID, INTERBIOMETRICS_MINI_IOBOARD_PID) }, 169 + { USB_DEVICE(FTDI_VID, FTDI_SPROG_II) }, 170 { USB_DEVICE(FTDI_VID, FTDI_XF_632_PID) }, 171 { USB_DEVICE(FTDI_VID, FTDI_XF_634_PID) }, 172 { USB_DEVICE(FTDI_VID, FTDI_XF_547_PID) },
+3
drivers/usb/serial/ftdi_sio.h
··· 75 /* OpenDCC (www.opendcc.de) product id */ 76 #define FTDI_OPENDCC_PID 0xBFD8 77 78 /* www.crystalfontz.com devices - thanx for providing free devices for evaluation ! */ 79 /* they use the ftdi chipset for the USB interface and the vendor id is the same */ 80 #define FTDI_XF_632_PID 0xFC08 /* 632: 16x2 Character Display */
··· 75 /* OpenDCC (www.opendcc.de) product id */ 76 #define FTDI_OPENDCC_PID 0xBFD8 77 78 + /* Sprog II (Andrew Crosland's SprogII DCC interface) */ 79 + #define FTDI_SPROG_II 0xF0C8 80 + 81 /* www.crystalfontz.com devices - thanx for providing free devices for evaluation ! */ 82 /* they use the ftdi chipset for the USB interface and the vendor id is the same */ 83 #define FTDI_XF_632_PID 0xFC08 /* 632: 16x2 Character Display */