USB: serial: Remove unnecessary \n's from dbg uses
#define dbg adds the newline, messages shouldn't. Converted dbg("%s", "some string") to dbg("some string") Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
815e173e1d
commit
759f363426
@@ -194,7 +194,7 @@ static int usb_serial_multi_urb_write(struct tty_struct *tty,
|
||||
if (port->urbs_in_flight >
|
||||
port->serial->type->max_in_flight_urbs) {
|
||||
spin_unlock_irqrestore(&port->lock, flags);
|
||||
dbg("%s - write limit hit\n", __func__);
|
||||
dbg("%s - write limit hit", __func__);
|
||||
return bwrite;
|
||||
}
|
||||
port->tx_bytes_flight += towrite;
|
||||
|
Reference in New Issue
Block a user