···124 To compile this driver as a module, choose M here: the125 module will be called sl811-hcd.12600000000000
···124 To compile this driver as a module, choose M here: the125 module will be called sl811-hcd.126127+config USB_SL811_CS128+ tristate "CF/PCMCIA support for SL811HS HCD"129+ depends on USB_SL811_HCD && PCMCIA130+ default N131+ help132+ Wraps a PCMCIA driver around the SL811HS HCD, supporting the RATOC133+ REX-CFU1U CF card (often used with PDAs). If unsure, say N.134+135+ To compile this driver as a module, choose M here: the136+ module will be called "sl811_cs".137+
···144145/* ELV USB Module UO100 (PID sent by Stefan Frings) */146#define FTDI_ELV_UO100_PID 0xFB58 /* Product Id */00147148/*149 * Definitions for ID TECH (www.idt-net.com) devices
···144145/* ELV USB Module UO100 (PID sent by Stefan Frings) */146#define FTDI_ELV_UO100_PID 0xFB58 /* Product Id */147+/* ELV USB Module UM100 (PID sent by Arnim Laeuger) */148+#define FTDI_ELV_UM100_PID 0xFB5A /* Product Id */149150/*151 * Definitions for ID TECH (www.idt-net.com) devices
+10-10
drivers/usb/serial/usb-serial.c
···1297 goto exit_bus;1298 }12991300- /* register the generic driver, if we should */1301- result = usb_serial_generic_register(debug);1302- if (result < 0) {1303- err("%s - registering generic driver failed", __FUNCTION__);1304- goto exit_generic;1305- }1306-1307 usb_serial_tty_driver->owner = THIS_MODULE;1308 usb_serial_tty_driver->driver_name = "usbserial";1309 usb_serial_tty_driver->devfs_name = "usb/tts/";···1322 goto exit_tty;1323 }132400000001325 info(DRIVER_DESC " " DRIVER_VERSION);13261327 return result;00013281329exit_tty:1330 tty_unregister_driver(usb_serial_tty_driver);13311332exit_reg_driver:1333- usb_serial_generic_deregister();1334-1335-exit_generic:1336 bus_unregister(&usb_serial_bus_type);13371338exit_bus:
···1297 goto exit_bus;1298 }129900000001300 usb_serial_tty_driver->owner = THIS_MODULE;1301 usb_serial_tty_driver->driver_name = "usbserial";1302 usb_serial_tty_driver->devfs_name = "usb/tts/";···1329 goto exit_tty;1330 }13311332+ /* register the generic driver, if we should */1333+ result = usb_serial_generic_register(debug);1334+ if (result < 0) {1335+ err("%s - registering generic driver failed", __FUNCTION__);1336+ goto exit_generic;1337+ }1338+1339 info(DRIVER_DESC " " DRIVER_VERSION);13401341 return result;1342+1343+exit_generic:1344+ usb_deregister(&usb_serial_driver);13451346exit_tty:1347 tty_unregister_driver(usb_serial_tty_driver);13481349exit_reg_driver:0001350 bus_unregister(&usb_serial_bus_type);13511352exit_bus: