diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-03 19:44:07 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-03 19:44:07 -0400 |
commit | b6ea163b6d784e92266f33936d096f7dc83d7b22 (patch) | |
tree | 0a8fef2e0634de3911368a51f025e10339ccfb9e /drivers/usb/serial | |
parent | 005331f4c4345ed714dc9e35b861f6866394da5d (diff) |
USB: f81232.c: remove dbg() tracing calls
dbg() was used a lot a long time ago to trace code flow. Now that we have
ftrace, this isn't needed at all, so remove these calls.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial')
-rw-r--r-- | drivers/usb/serial/f81232.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/usb/serial/f81232.c b/drivers/usb/serial/f81232.c index 88c0b1963920..46aee85210e2 100644 --- a/drivers/usb/serial/f81232.c +++ b/drivers/usb/serial/f81232.c | |||
@@ -68,8 +68,6 @@ static void f81232_read_int_callback(struct urb *urb) | |||
68 | int status = urb->status; | 68 | int status = urb->status; |
69 | int retval; | 69 | int retval; |
70 | 70 | ||
71 | dbg("%s (%d)", __func__, port->number); | ||
72 | |||
73 | switch (status) { | 71 | switch (status) { |
74 | case 0: | 72 | case 0: |
75 | /* success */ | 73 | /* success */ |
@@ -203,7 +201,6 @@ static int f81232_open(struct tty_struct *tty, struct usb_serial_port *port) | |||
203 | if (tty) | 201 | if (tty) |
204 | f81232_set_termios(tty, port, &tmp_termios); | 202 | f81232_set_termios(tty, port, &tmp_termios); |
205 | 203 | ||
206 | dbg("%s - submitting interrupt urb", __func__); | ||
207 | result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); | 204 | result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); |
208 | if (result) { | 205 | if (result) { |
209 | dev_err(&port->dev, "%s - failed submitting interrupt urb," | 206 | dev_err(&port->dev, "%s - failed submitting interrupt urb," |