diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-18 05:15:09 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-18 05:15:09 -0400 |
commit | fee58d4821fc8765a7d47ab894385c6de63149d0 (patch) | |
tree | 64e4ad2d45dcbd70e5033c1974efc050b188b569 /drivers/staging | |
parent | 59d33f2fc2d63796296b1b76143e039d6e7cf532 (diff) |
USB: Serial: serqt_usb2.c: 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.
CC: Rusty Russell <rusty@rustcorp.com.au>
CC: Alan Stern <stern@rowland.harvard.edu>
CC: Mauro Carvalho Chehab <mchehab@redhat.com>
CC: "Justin P. Mattock" <justinmattock@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/serqt_usb2/serqt_usb2.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/serqt_usb2/serqt_usb2.c b/drivers/staging/serqt_usb2/serqt_usb2.c index b1e8b9dc931..376269b2bbf 100644 --- a/drivers/staging/serqt_usb2/serqt_usb2.c +++ b/drivers/staging/serqt_usb2/serqt_usb2.c | |||
@@ -16,8 +16,6 @@ | |||
16 | #include <linux/usb/serial.h> | 16 | #include <linux/usb/serial.h> |
17 | #include <linux/uaccess.h> | 17 | #include <linux/uaccess.h> |
18 | 18 | ||
19 | static bool debug; | ||
20 | |||
21 | /* Version Information */ | 19 | /* Version Information */ |
22 | #define DRIVER_VERSION "v2.14" | 20 | #define DRIVER_VERSION "v2.14" |
23 | #define DRIVER_AUTHOR "Tim Gobeli, Quatech, Inc" | 21 | #define DRIVER_AUTHOR "Tim Gobeli, Quatech, Inc" |
@@ -1527,6 +1525,3 @@ module_usb_serial_driver(serial_drivers, id_table); | |||
1527 | MODULE_AUTHOR(DRIVER_AUTHOR); | 1525 | MODULE_AUTHOR(DRIVER_AUTHOR); |
1528 | MODULE_DESCRIPTION(DRIVER_DESC); | 1526 | MODULE_DESCRIPTION(DRIVER_DESC); |
1529 | MODULE_LICENSE("GPL"); | 1527 | MODULE_LICENSE("GPL"); |
1530 | |||
1531 | module_param(debug, bool, S_IRUGO | S_IWUSR); | ||
1532 | MODULE_PARM_DESC(debug, "Debug enabled or not"); | ||