Add missing newlines to some uses of dev_<level> messages
Found these while looking at printk uses. Add missing newlines to dev_<level> uses Add missing KERN_<level> prefixes to multiline dev_<level>s Fixed a wierd->weird spelling typo Added a newline to a printk Signed-off-by: Joe Perches <joe@perches.com> Cc: "Luck, Tony" <tony.luck@intel.com> Cc: Jens Axboe <jens.axboe@oracle.com> Cc: Mark M. Hoffman <mhoffman@lightlink.com> Cc: Roland Dreier <rolandd@cisco.com> Cc: Tilman Schmidt <tilman@imap.cc> Cc: David Woodhouse <dwmw2@infradead.org> Cc: Jeff Garzik <jeff@garzik.org> Cc: Stephen Hemminger <shemminger@linux-foundation.org> Cc: Greg KH <greg@kroah.com> Cc: Jeremy Fitzhardinge <jeremy@goop.org> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Alessandro Zummo <a.zummo@towertech.it> Cc: David Brownell <david-b@pacbell.net> Cc: James Smart <James.Smart@Emulex.Com> Cc: Andrew Vasquez <andrew.vasquez@qlogic.com> Cc: "Antonino A. Daplas" <adaplas@pol.net> Cc: Evgeniy Polyakov <johnpol@2ka.mipt.ru> Cc: Russell King <rmk@arm.linux.org.uk> Cc: Jaroslav Kysela <perex@suse.cz> Cc: Takashi Iwai <tiwai@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
6c0286b199
commit
898eb71cb1
@ -227,7 +227,7 @@ static int ipw_open(struct usb_serial_port *port, struct file *filp)
|
||||
0,
|
||||
100000);
|
||||
if (result < 0)
|
||||
dev_err(&port->dev, "Init of modem failed (error = %d)", result);
|
||||
dev_err(&port->dev, "Init of modem failed (error = %d)\n", result);
|
||||
|
||||
/* reset the bulk pipes */
|
||||
usb_clear_halt(dev, usb_rcvbulkpipe(dev, port->bulk_in_endpointAddress));
|
||||
@ -255,7 +255,7 @@ static int ipw_open(struct usb_serial_port *port, struct file *filp)
|
||||
0,
|
||||
100000);
|
||||
if (result < 0)
|
||||
dev_err(&port->dev, "Enabling bulk RxRead failed (error = %d)", result);
|
||||
dev_err(&port->dev, "Enabling bulk RxRead failed (error = %d)\n", result);
|
||||
|
||||
/*--4: setup the initial flowcontrol */
|
||||
dbg("%s:setting init flowcontrol (%s)",__FUNCTION__,buf_flow_init);
|
||||
@ -268,7 +268,7 @@ static int ipw_open(struct usb_serial_port *port, struct file *filp)
|
||||
0x10,
|
||||
200000);
|
||||
if (result < 0)
|
||||
dev_err(&port->dev, "initial flowcontrol failed (error = %d)", result);
|
||||
dev_err(&port->dev, "initial flowcontrol failed (error = %d)\n", result);
|
||||
|
||||
|
||||
/*--5: raise the dtr */
|
||||
@ -282,7 +282,7 @@ static int ipw_open(struct usb_serial_port *port, struct file *filp)
|
||||
0,
|
||||
200000);
|
||||
if (result < 0)
|
||||
dev_err(&port->dev, "setting dtr failed (error = %d)", result);
|
||||
dev_err(&port->dev, "setting dtr failed (error = %d)\n", result);
|
||||
|
||||
/*--6: raise the rts */
|
||||
dbg("%s:raising rts",__FUNCTION__);
|
||||
@ -295,7 +295,7 @@ static int ipw_open(struct usb_serial_port *port, struct file *filp)
|
||||
0,
|
||||
200000);
|
||||
if (result < 0)
|
||||
dev_err(&port->dev, "setting dtr failed (error = %d)", result);
|
||||
dev_err(&port->dev, "setting dtr failed (error = %d)\n", result);
|
||||
|
||||
kfree(buf_flow_init);
|
||||
return 0;
|
||||
@ -322,7 +322,7 @@ static void ipw_close(struct usb_serial_port *port, struct file * filp)
|
||||
0,
|
||||
200000);
|
||||
if (result < 0)
|
||||
dev_err(&port->dev, "dropping dtr failed (error = %d)", result);
|
||||
dev_err(&port->dev, "dropping dtr failed (error = %d)\n", result);
|
||||
|
||||
/*--2: drop the rts */
|
||||
dbg("%s:dropping rts",__FUNCTION__);
|
||||
@ -334,7 +334,7 @@ static void ipw_close(struct usb_serial_port *port, struct file * filp)
|
||||
0,
|
||||
200000);
|
||||
if (result < 0)
|
||||
dev_err(&port->dev, "dropping rts failed (error = %d)", result);
|
||||
dev_err(&port->dev, "dropping rts failed (error = %d)\n", result);
|
||||
|
||||
|
||||
/*--3: purge */
|
||||
@ -347,7 +347,7 @@ static void ipw_close(struct usb_serial_port *port, struct file * filp)
|
||||
0,
|
||||
200000);
|
||||
if (result < 0)
|
||||
dev_err(&port->dev, "purge failed (error = %d)", result);
|
||||
dev_err(&port->dev, "purge failed (error = %d)\n", result);
|
||||
|
||||
|
||||
/* send RXBULK_off (tell modem to stop transmitting bulk data on rx chan) */
|
||||
@ -361,7 +361,7 @@ static void ipw_close(struct usb_serial_port *port, struct file * filp)
|
||||
100000);
|
||||
|
||||
if (result < 0)
|
||||
dev_err(&port->dev, "Disabling bulk RxRead failed (error = %d)", result);
|
||||
dev_err(&port->dev, "Disabling bulk RxRead failed (error = %d)\n", result);
|
||||
|
||||
/* shutdown any in-flight urbs that we know about */
|
||||
usb_kill_urb(port->read_urb);
|
||||
|
Reference in New Issue
Block a user