]> git.karo-electronics.de Git - linux-beck.git/blob - drivers/usb/serial/funsoft.c
168acbb54a0cef032a98f0efbc466c5ae33b88cc
[linux-beck.git] / drivers / usb / serial / funsoft.c
1 /*
2  * Funsoft Serial USB driver
3  *
4  * Copyright (C) 2006 Greg Kroah-Hartman <gregkh@suse.de>
5  *
6  *      This program is free software; you can redistribute it and/or
7  *      modify it under the terms of the GNU General Public License version
8  *      2 as published by the Free Software Foundation.
9  */
10
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/tty.h>
14 #include <linux/module.h>
15 #include <linux/usb.h>
16 #include <linux/usb/serial.h>
17 #include <linux/uaccess.h>
18
19 static bool debug;
20
21 static const struct usb_device_id id_table[] = {
22         { USB_DEVICE(0x1404, 0xcddc) },
23         { },
24 };
25 MODULE_DEVICE_TABLE(usb, id_table);
26
27 static struct usb_driver funsoft_driver = {
28         .name =         "funsoft",
29         .disconnect =   usb_serial_disconnect,
30         .id_table =     id_table,
31 };
32
33 static struct usb_serial_driver funsoft_device = {
34         .driver = {
35                 .owner =        THIS_MODULE,
36                 .name =         "funsoft",
37         },
38         .id_table =             id_table,
39         .num_ports =            1,
40 };
41
42 static struct usb_serial_driver * const serial_drivers[] = {
43         &funsoft_device, NULL
44 };
45
46 module_usb_serial_driver(funsoft_driver, serial_drivers);
47
48 MODULE_LICENSE("GPL");
49
50 module_param(debug, bool, S_IRUGO | S_IWUSR);
51 MODULE_PARM_DESC(debug, "Debug enabled or not");