Commit b6ea163b authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

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: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 005331f4
...@@ -68,8 +68,6 @@ static void f81232_read_int_callback(struct urb *urb) ...@@ -68,8 +68,6 @@ static void f81232_read_int_callback(struct urb *urb)
int status = urb->status; int status = urb->status;
int retval; int retval;
dbg("%s (%d)", __func__, port->number);
switch (status) { switch (status) {
case 0: case 0:
/* success */ /* success */
...@@ -203,7 +201,6 @@ static int f81232_open(struct tty_struct *tty, struct usb_serial_port *port) ...@@ -203,7 +201,6 @@ static int f81232_open(struct tty_struct *tty, struct usb_serial_port *port)
if (tty) if (tty)
f81232_set_termios(tty, port, &tmp_termios); f81232_set_termios(tty, port, &tmp_termios);
dbg("%s - submitting interrupt urb", __func__);
result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL); result = usb_submit_urb(port->interrupt_in_urb, GFP_KERNEL);
if (result) { if (result) {
dev_err(&port->dev, "%s - failed submitting interrupt urb," dev_err(&port->dev, "%s - failed submitting interrupt urb,"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment