···124124 To compile this driver as a module, choose M here: the125125 module will be called sl811-hcd.126126127127+config USB_SL811_CS128128+ tristate "CF/PCMCIA support for SL811HS HCD"129129+ depends on USB_SL811_HCD && PCMCIA130130+ default N131131+ help132132+ Wraps a PCMCIA driver around the SL811HS HCD, supporting the RATOC133133+ REX-CFU1U CF card (often used with PDAs). If unsure, say N.134134+135135+ To compile this driver as a module, choose M here: the136136+ module will be called "sl811_cs".137137+
···144144145145/* ELV USB Module UO100 (PID sent by Stefan Frings) */146146#define FTDI_ELV_UO100_PID 0xFB58 /* Product Id */147147+/* ELV USB Module UM100 (PID sent by Arnim Laeuger) */148148+#define FTDI_ELV_UM100_PID 0xFB5A /* Product Id */147149148150/*149151 * Definitions for ID TECH (www.idt-net.com) devices
+10-10
drivers/usb/serial/usb-serial.c
···12971297 goto exit_bus;12981298 }1299129913001300- /* register the generic driver, if we should */13011301- result = usb_serial_generic_register(debug);13021302- if (result < 0) {13031303- err("%s - registering generic driver failed", __FUNCTION__);13041304- goto exit_generic;13051305- }13061306-13071300 usb_serial_tty_driver->owner = THIS_MODULE;13081301 usb_serial_tty_driver->driver_name = "usbserial";13091302 usb_serial_tty_driver->devfs_name = "usb/tts/";···13221329 goto exit_tty;13231330 }1324133113321332+ /* register the generic driver, if we should */13331333+ result = usb_serial_generic_register(debug);13341334+ if (result < 0) {13351335+ err("%s - registering generic driver failed", __FUNCTION__);13361336+ goto exit_generic;13371337+ }13381338+13251339 info(DRIVER_DESC " " DRIVER_VERSION);1326134013271341 return result;13421342+13431343+exit_generic:13441344+ usb_deregister(&usb_serial_driver);1328134513291346exit_tty:13301347 tty_unregister_driver(usb_serial_tty_driver);1331134813321349exit_reg_driver:13331333- usb_serial_generic_deregister();13341334-13351335-exit_generic:13361350 bus_unregister(&usb_serial_bus_type);1337135113381352exit_bus: