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
@@ -391,7 +391,7 @@ static void cyberjack_read_bulk_callback(struct urb *urb)
|
||||
|
||||
tty = tty_port_tty_get(&port->port);
|
||||
if (!tty) {
|
||||
dbg("%s - ignoring since device not open\n", __func__);
|
||||
dbg("%s - ignoring since device not open", __func__);
|
||||
return;
|
||||
}
|
||||
if (urb->actual_length) {
|
||||
|
Reference in New Issue
Block a user