diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-18 11:05:17 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-18 11:05:17 -0400 |
commit | 3033bc8d74c1a9d9104b9f231283e780e6dd8de7 (patch) | |
tree | a8a319dd600364ef66ce565415d9efce229bef7e /drivers/usb/serial/generic.c | |
parent | d3d6c328e5030da560dcbaaa9ced063d5ba93642 (diff) |
USB: Serial: usb-serial: remove debug module parameter
Now that all usb-serial modules are only using dev_dbg()
the debug module parameter does not do anything at all, so
remove it to reduce any confusion if someone were to try
to use it.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/generic.c')
-rw-r--r-- | drivers/usb/serial/generic.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/serial/generic.c b/drivers/usb/serial/generic.c index 47e228030922..296612153ea2 100644 --- a/drivers/usb/serial/generic.c +++ b/drivers/usb/serial/generic.c | |||
@@ -24,8 +24,6 @@ | |||
24 | #include <linux/kfifo.h> | 24 | #include <linux/kfifo.h> |
25 | #include <linux/serial.h> | 25 | #include <linux/serial.h> |
26 | 26 | ||
27 | static int debug; | ||
28 | |||
29 | #ifdef CONFIG_USB_SERIAL_GENERIC | 27 | #ifdef CONFIG_USB_SERIAL_GENERIC |
30 | 28 | ||
31 | static __u16 vendor = 0x05f9; | 29 | static __u16 vendor = 0x05f9; |
@@ -60,11 +58,10 @@ static struct usb_serial_driver * const serial_drivers[] = { | |||
60 | 58 | ||
61 | #endif | 59 | #endif |
62 | 60 | ||
63 | int usb_serial_generic_register(int _debug) | 61 | int usb_serial_generic_register(void) |
64 | { | 62 | { |
65 | int retval = 0; | 63 | int retval = 0; |
66 | 64 | ||
67 | debug = _debug; | ||
68 | #ifdef CONFIG_USB_SERIAL_GENERIC | 65 | #ifdef CONFIG_USB_SERIAL_GENERIC |
69 | generic_device_ids[0].idVendor = vendor; | 66 | generic_device_ids[0].idVendor = vendor; |
70 | generic_device_ids[0].idProduct = product; | 67 | generic_device_ids[0].idProduct = product; |