USB: serial: remove port number from generic-driver debug
authorJohan Hovold <jhovold@gmail.com>
Thu, 21 Mar 2013 11:36:27 +0000 (12:36 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 25 Mar 2013 20:42:13 +0000 (13:42 -0700)
Remove redundant port number from debug output (already printed as part
of device name).

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/generic.c

index 4c5c23f..927c5d6 100644 (file)
@@ -272,8 +272,7 @@ static int usb_serial_generic_submit_read_urb(struct usb_serial_port *port,
        if (!test_and_clear_bit(index, &port->read_urbs_free))
                return 0;
 
-       dev_dbg(&port->dev, "%s - port %d, urb %d\n", __func__,
-               port->number, index);
+       dev_dbg(&port->dev, "%s - urb %d\n", __func__, index);
 
        res = usb_submit_urb(port->read_urbs[index], mem_flags);
        if (res) {
@@ -347,8 +346,8 @@ void usb_serial_generic_read_bulk_callback(struct urb *urb)
        }
        set_bit(i, &port->read_urbs_free);
 
-       dev_dbg(&port->dev, "%s - port %d, urb %d, len %d\n",
-               __func__, port->number, i, urb->actual_length);
+       dev_dbg(&port->dev, "%s - urb %d, len %d\n", __func__, i,
+                                                       urb->actual_length);
 
        if (urb->status) {
                dev_dbg(&port->dev, "%s - non-zero urb status: %d\n",
@@ -473,8 +472,7 @@ void usb_serial_handle_dcd_change(struct usb_serial_port *usb_port,
 {
        struct tty_port *port = &usb_port->port;
 
-       dev_dbg(&usb_port->dev, "%s - port %d, status %d\n", __func__,
-               usb_port->number, status);
+       dev_dbg(&usb_port->dev, "%s - status %d\n", __func__, status);
 
        if (status)
                wake_up_interruptible(&port->open_wait);