diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-05 07:27:19 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-08-12 15:14:52 -0400 |
commit | 1f9230713af17657f7ed503a12ddd739d0f48089 (patch) | |
tree | f4e3d3f9e6856b4da0085beabe8dbf81fecb729c /drivers/usb/serial/funsoft.c | |
parent | 3804fad45411b48233b48003e33a78f290d227c8 (diff) |
USB: serial: move the "simple" drivers into usb-serial-simple.c
Instead of having to create a new driver for a "simple" usb to serial
device, mush them all into one file, with a macro, so as to make it easy
to add new ones.
Cc: "René Bürgel" <rene.buergel@sohard.de>
Acked-by: Wei Shuai <cpuwolf@gmail.com>
Cc: Josh Triplett <josh@joshtriplett.org>
Acked-by: Frans Klaver <frans.klaver@xsens.com>
Cc: "Wesley W. Terpstra" <w.terpstra@gsi.de>
Cc: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/funsoft.c')
-rw-r--r-- | drivers/usb/serial/funsoft.c | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/drivers/usb/serial/funsoft.c b/drivers/usb/serial/funsoft.c deleted file mode 100644 index 9362f8fd2385..000000000000 --- a/drivers/usb/serial/funsoft.c +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
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 const struct usb_device_id id_table[] = { | ||
20 | { USB_DEVICE(0x1404, 0xcddc) }, | ||
21 | { }, | ||
22 | }; | ||
23 | MODULE_DEVICE_TABLE(usb, id_table); | ||
24 | |||
25 | static struct usb_serial_driver funsoft_device = { | ||
26 | .driver = { | ||
27 | .owner = THIS_MODULE, | ||
28 | .name = "funsoft", | ||
29 | }, | ||
30 | .id_table = id_table, | ||
31 | .num_ports = 1, | ||
32 | }; | ||
33 | |||
34 | static struct usb_serial_driver * const serial_drivers[] = { | ||
35 | &funsoft_device, NULL | ||
36 | }; | ||
37 | |||
38 | module_usb_serial_driver(serial_drivers, id_table); | ||
39 | |||
40 | MODULE_LICENSE("GPL"); | ||