diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-18 05:16:04 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-18 05:16:04 -0400 |
commit | 6e03b8cecbd836f729afe1a50814544baa5e5f97 (patch) | |
tree | bb778bf62f92b0b2ea995bafc5a930249cf311ee /drivers/usb/serial/omninet.c | |
parent | ef0d54cd89e6c4a620fe2f69edac5bba1e701c86 (diff) |
USB: Serial: omninet.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: Johan Hovold <jhovold@gmail.com>
CC: Rusty Russell <rusty@rustcorp.com.au>
CC: Alan Stern <stern@rowland.harvard.edu>
CC: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/omninet.c')
-rw-r--r-- | drivers/usb/serial/omninet.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/drivers/usb/serial/omninet.c b/drivers/usb/serial/omninet.c index 7e81ed0c79ca..4803b5ec19ba 100644 --- a/drivers/usb/serial/omninet.c +++ b/drivers/usb/serial/omninet.c | |||
@@ -23,8 +23,6 @@ | |||
23 | #include <linux/usb.h> | 23 | #include <linux/usb.h> |
24 | #include <linux/usb/serial.h> | 24 | #include <linux/usb/serial.h> |
25 | 25 | ||
26 | static bool debug; | ||
27 | |||
28 | /* | 26 | /* |
29 | * Version Information | 27 | * Version Information |
30 | */ | 28 | */ |
@@ -172,17 +170,6 @@ static void omninet_read_bulk_callback(struct urb *urb) | |||
172 | return; | 170 | return; |
173 | } | 171 | } |
174 | 172 | ||
175 | if (debug && header->oh_xxx != 0x30) { | ||
176 | if (urb->actual_length) { | ||
177 | printk(KERN_DEBUG "%s: omninet_read %d: ", | ||
178 | __FILE__, header->oh_len); | ||
179 | for (i = 0; i < (header->oh_len + | ||
180 | OMNINET_HEADERLEN); i++) | ||
181 | printk("%.2x ", data[i]); | ||
182 | printk("\n"); | ||
183 | } | ||
184 | } | ||
185 | |||
186 | if (urb->actual_length && header->oh_len) { | 173 | if (urb->actual_length && header->oh_len) { |
187 | struct tty_struct *tty = tty_port_tty_get(&port->port); | 174 | struct tty_struct *tty = tty_port_tty_get(&port->port); |
188 | if (tty) { | 175 | if (tty) { |
@@ -306,6 +293,3 @@ module_usb_serial_driver(serial_drivers, id_table); | |||
306 | MODULE_AUTHOR(DRIVER_AUTHOR); | 293 | MODULE_AUTHOR(DRIVER_AUTHOR); |
307 | MODULE_DESCRIPTION(DRIVER_DESC); | 294 | MODULE_DESCRIPTION(DRIVER_DESC); |
308 | MODULE_LICENSE("GPL"); | 295 | MODULE_LICENSE("GPL"); |
309 | |||
310 | module_param(debug, bool, S_IRUGO | S_IWUSR); | ||
311 | MODULE_PARM_DESC(debug, "Debug enabled or not"); | ||