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

USB: kobil_sct.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.

CC: Johan Hovold <jhovold@gmail.com>
CC: Alan Stern <stern@rowland.harvard.edu>
CC: Felipe Balbi <balbi@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b20430bc
...@@ -193,7 +193,6 @@ static int kobil_startup(struct usb_serial *serial) ...@@ -193,7 +193,6 @@ static int kobil_startup(struct usb_serial *serial)
static void kobil_release(struct usb_serial *serial) static void kobil_release(struct usb_serial *serial)
{ {
int i; int i;
dbg("%s - port %d", __func__, serial->port[0]->number);
for (i = 0; i < serial->num_ports; ++i) for (i = 0; i < serial->num_ports; ++i)
kfree(usb_get_serial_port_data(serial->port[i])); kfree(usb_get_serial_port_data(serial->port[i]));
...@@ -217,7 +216,6 @@ static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port) ...@@ -217,7 +216,6 @@ static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port)
int transfer_buffer_length = 8; int transfer_buffer_length = 8;
int write_urb_transfer_buffer_length = 8; int write_urb_transfer_buffer_length = 8;
dbg("%s - port %d", __func__, port->number);
priv = usb_get_serial_port_data(port); priv = usb_get_serial_port_data(port);
/* allocate memory for transfer buffer */ /* allocate memory for transfer buffer */
...@@ -327,8 +325,6 @@ static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port) ...@@ -327,8 +325,6 @@ static int kobil_open(struct tty_struct *tty, struct usb_serial_port *port)
static void kobil_close(struct usb_serial_port *port) static void kobil_close(struct usb_serial_port *port)
{ {
dbg("%s - port %d", __func__, port->number);
/* FIXME: Add rts/dtr methods */ /* FIXME: Add rts/dtr methods */
if (port->write_urb) { if (port->write_urb) {
usb_poison_urb(port->write_urb); usb_poison_urb(port->write_urb);
...@@ -349,8 +345,6 @@ static void kobil_read_int_callback(struct urb *urb) ...@@ -349,8 +345,6 @@ static void kobil_read_int_callback(struct urb *urb)
int status = urb->status; int status = urb->status;
/* char *dbg_data; */ /* char *dbg_data; */
dbg("%s - port %d", __func__, port->number);
if (status) { if (status) {
dbg("%s - port %d Read int status not zero: %d", dbg("%s - port %d Read int status not zero: %d",
__func__, port->number, status); __func__, port->number, status);
...@@ -474,7 +468,6 @@ static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port, ...@@ -474,7 +468,6 @@ static int kobil_write(struct tty_struct *tty, struct usb_serial_port *port,
static int kobil_write_room(struct tty_struct *tty) static int kobil_write_room(struct tty_struct *tty)
{ {
/* dbg("%s - port %d", __func__, port->number); */
/* FIXME */ /* FIXME */
return 8; return 8;
} }
......
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