diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-10-06 14:34:18 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-10-20 15:20:06 +0300 |
commit | bdff14808679ef913dc10611f1bfcc3276665967 (patch) | |
tree | 5ea5615ccf9e2c20958df369d9ab7b8df060055f /drivers/tty | |
parent | 22b276a4072087e7b7f1723ccd8a1aa18fab8bbf (diff) | |
download | linux-bdff14808679ef913dc10611f1bfcc3276665967.tar.xz |
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 <arvind.yadav.cs@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-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; } |