From: Arvind Yadav Date: Fri, 6 Oct 2017 11:34:18 +0000 (+0530) Subject: serial-uartlite: pr_err() strings should end with newlines X-Git-Tag: v4.15-rc1~141^2~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bdff14808679ef913dc10611f1bfcc3276665967;p=thirdparty%2Fkernel%2Flinux.git serial-uartlite: pr_err() strings should end with newlines pr_err() messages should end with a new-line to avoid other messages being concatenated. Signed-off-by: Arvind Yadav Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/uartlite.c b/drivers/tty/serial/uartlite.c index c9b8d702dadc3..1de99425d9e87 100644 --- a/drivers/tty/serial/uartlite.c +++ b/drivers/tty/serial/uartlite.c @@ -739,7 +739,7 @@ static int __init ulite_init(void) err_plat: uart_unregister_driver(&ulite_uart_driver); err_uart: - pr_err("registering uartlite driver failed: err=%i", ret); + pr_err("registering uartlite driver failed: err=%i\n", ret); return ret; }