Skip to content

Commit

Permalink
USB: cp210x.c: remove dbg() tracing calls
Browse files Browse the repository at this point in the history
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: Preston Fick <preston.fick@silabs.com>
CC: Yuri Matylitski <ym@tekinsoft.com>
CC: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed May 3, 2012
1 parent 2ec7d45 commit b978a5a
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions drivers/usb/serial/cp210x.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,8 +424,6 @@ static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port)
{
int result;

dbg("%s - port %d", __func__, port->number);

result = cp210x_set_config_single(port, CP210X_IFC_ENABLE,
UART_ENABLE);
if (result) {
Expand All @@ -445,8 +443,6 @@ static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port)

static void cp210x_close(struct usb_serial_port *port)
{
dbg("%s - port %d", __func__, port->number);

usb_serial_generic_close(port);

mutex_lock(&port->serial->disc_mutex);
Expand Down Expand Up @@ -490,8 +486,6 @@ static void cp210x_get_termios_port(struct usb_serial_port *port,
unsigned int baud;
unsigned int bits;

dbg("%s - port %d", __func__, port->number);

cp210x_get_config(port, CP210X_GET_BAUDRATE, &baud, 4);

dbg("%s - baud rate = %d", __func__, baud);
Expand Down Expand Up @@ -789,8 +783,6 @@ static int cp210x_tiocmset_port(struct usb_serial_port *port,
{
unsigned int control = 0;

dbg("%s - port %d", __func__, port->number);

if (set & TIOCM_RTS) {
control |= CONTROL_RTS;
control |= CONTROL_WRITE_RTS;
Expand Down Expand Up @@ -827,8 +819,6 @@ static int cp210x_tiocmget (struct tty_struct *tty)
unsigned int control;
int result;

dbg("%s - port %d", __func__, port->number);

cp210x_get_config(port, CP210X_GET_MDMSTS, &control, 1);

result = ((control & CONTROL_DTR) ? TIOCM_DTR : 0)
Expand All @@ -848,7 +838,6 @@ static void cp210x_break_ctl (struct tty_struct *tty, int break_state)
struct usb_serial_port *port = tty->driver_data;
unsigned int state;

dbg("%s - port %d", __func__, port->number);
if (break_state == 0)
state = BREAK_OFF;
else
Expand Down

0 comments on commit b978a5a

Please sign in to comment.