diff options
author | Arvind Yadav <[email protected]> | 2017-10-06 17:04:18 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2017-10-20 14:20:06 +0200 |
commit | bdff14808679ef913dc10611f1bfcc3276665967 (patch) | |
tree | 5ea5615ccf9e2c20958df369d9ab7b8df060055f | |
parent | 22b276a4072087e7b7f1723ccd8a1aa18fab8bbf (diff) |
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/tty/serial/uartlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/uartlite.c b/drivers/tty/serial/uartlite.c index c9b8d702dadc..1de99425d9e8 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; } |