mirror of https://gitee.com/openkylin/linux.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 <arvind.yadav.cs@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
22b276a407
commit
bdff148086
|
@ -739,7 +739,7 @@ static int __init ulite_init(void)
|
||||||
err_plat:
|
err_plat:
|
||||||
uart_unregister_driver(&ulite_uart_driver);
|
uart_unregister_driver(&ulite_uart_driver);
|
||||||
err_uart:
|
err_uart:
|
||||||
pr_err("registering uartlite driver failed: err=%i", ret);
|
pr_err("registering uartlite driver failed: err=%i\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue