opticon.c (32078f915d1acab356080b144aa89fe3487f3979) | opticon.c (68e24113457e437b1576670f2419b77ed0531e9e) |
---|---|
1/* 2 * Opticon USB barcode to serial driver 3 * 4 * Copyright (C) 2011 Martin Jansen <martin.jansen@opticon.com> 5 * Copyright (C) 2008 - 2009 Greg Kroah-Hartman <gregkh@suse.de> 6 * Copyright (C) 2008 - 2009 Novell Inc. 7 * 8 * This program is free software; you can redistribute it and/or --- 601 unchanged lines hidden (view full) --- 610 .tiocmget = opticon_tiocmget, 611 .tiocmset = opticon_tiocmset, 612}; 613 614static struct usb_serial_driver * const serial_drivers[] = { 615 &opticon_device, NULL 616}; 617 | 1/* 2 * Opticon USB barcode to serial driver 3 * 4 * Copyright (C) 2011 Martin Jansen <martin.jansen@opticon.com> 5 * Copyright (C) 2008 - 2009 Greg Kroah-Hartman <gregkh@suse.de> 6 * Copyright (C) 2008 - 2009 Novell Inc. 7 * 8 * This program is free software; you can redistribute it and/or --- 601 unchanged lines hidden (view full) --- 610 .tiocmget = opticon_tiocmget, 611 .tiocmset = opticon_tiocmset, 612}; 613 614static struct usb_serial_driver * const serial_drivers[] = { 615 &opticon_device, NULL 616}; 617 |
618module_usb_serial_driver(opticon_driver, serial_drivers); | 618module_usb_serial_driver(serial_drivers, id_table); |
619 620MODULE_DESCRIPTION(DRIVER_DESC); 621MODULE_LICENSE("GPL"); 622 623module_param(debug, bool, S_IRUGO | S_IWUSR); 624MODULE_PARM_DESC(debug, "Debug enabled or not"); | 619 620MODULE_DESCRIPTION(DRIVER_DESC); 621MODULE_LICENSE("GPL"); 622 623module_param(debug, bool, S_IRUGO | S_IWUSR); 624MODULE_PARM_DESC(debug, "Debug enabled or not"); |