diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-18 05:15:41 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-18 05:15:41 -0400 |
commit | be4568beb8f447bfce2e70b6f11401267e5b208a (patch) | |
tree | 22dbfbd0e17d09ef7610b8dba41d459b440e751d /drivers/usb/serial/keyspan.c | |
parent | ca98bb7c4932eeb725be1dd940127305190ffb96 (diff) |
USB: Serial: keyspan.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.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/keyspan.c')
-rw-r--r-- | drivers/usb/serial/keyspan.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/usb/serial/keyspan.c b/drivers/usb/serial/keyspan.c index 1635f5062f00..566056cb04dc 100644 --- a/drivers/usb/serial/keyspan.c +++ b/drivers/usb/serial/keyspan.c | |||
@@ -45,8 +45,6 @@ | |||
45 | #include <linux/usb/serial.h> | 45 | #include <linux/usb/serial.h> |
46 | #include "keyspan.h" | 46 | #include "keyspan.h" |
47 | 47 | ||
48 | static bool debug; | ||
49 | |||
50 | /* | 48 | /* |
51 | * Version Information | 49 | * Version Information |
52 | */ | 50 | */ |
@@ -2558,7 +2556,3 @@ MODULE_FIRMWARE("keyspan/usa18x.fw"); | |||
2558 | MODULE_FIRMWARE("keyspan/usa19w.fw"); | 2556 | MODULE_FIRMWARE("keyspan/usa19w.fw"); |
2559 | MODULE_FIRMWARE("keyspan/usa49w.fw"); | 2557 | MODULE_FIRMWARE("keyspan/usa49w.fw"); |
2560 | MODULE_FIRMWARE("keyspan/usa49wlc.fw"); | 2558 | MODULE_FIRMWARE("keyspan/usa49wlc.fw"); |
2561 | |||
2562 | module_param(debug, bool, S_IRUGO | S_IWUSR); | ||
2563 | MODULE_PARM_DESC(debug, "Debug enabled or not"); | ||
2564 | |||