USB: serial: fix double newlines in debug output
authorJohan Hovold <jhovold@gmail.com>
Wed, 25 Apr 2012 14:12:08 +0000 (16:12 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 25 Apr 2012 18:42:17 +0000 (11:42 -0700)
Remove trailing newlines from debug messages.

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

index f6c63d3..7eee965 100644 (file)
@@ -312,7 +312,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;
 
-       dbg("%s - port %d, urb %d\n", __func__, port->number, index);
+       dbg("%s - port %d, urb %d", __func__, port->number, index);
 
        res = usb_submit_urb(port->read_urbs[index], mem_flags);
        if (res) {
@@ -394,10 +394,10 @@ void usb_serial_generic_read_bulk_callback(struct urb *urb)
        }
        set_bit(i, &port->read_urbs_free);
 
-       dbg("%s - port %d, urb %d, len %d\n", __func__, port->number, i,
+       dbg("%s - port %d, urb %d, len %d", __func__, port->number, i,
                                                        urb->actual_length);
        if (urb->status) {
-               dbg("%s - non-zero urb status: %d\n", __func__, urb->status);
+               dbg("%s - non-zero urb status: %d", __func__, urb->status);
                return;
        }