aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2016-10-24 17:00:27 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-10-27 16:01:31 +0200
commit0ead21ad25f53117a1e39f0bddcb363e38886996 (patch)
tree3daee674deafd6cccfbad46aacbc4f42b1573b9d /drivers/tty
parentserial: pch_uart: add terminate entry for dmi_system_id tables (diff)
downloadlinux-dev-0ead21ad25f53117a1e39f0bddcb363e38886996.tar.xz
linux-dev-0ead21ad25f53117a1e39f0bddcb363e38886996.zip
serial: 8250_uniphier: fix more unterminated string
Commit 1681d2116c96 ("serial: 8250_uniphier: add "\n" at the end of error log") missed this. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com> [masahiro: add commit log] Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/8250/8250_uniphier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/8250/8250_uniphier.c b/drivers/tty/serial/8250/8250_uniphier.c
index b8d9c8c9d02a..a8babb0cf659 100644
--- a/drivers/tty/serial/8250/8250_uniphier.c
+++ b/drivers/tty/serial/8250/8250_uniphier.c
@@ -199,7 +199,7 @@ static int uniphier_uart_probe(struct platform_device *pdev)
regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!regs) {
- dev_err(dev, "failed to get memory resource");
+ dev_err(dev, "failed to get memory resource\n");
return -EINVAL;
}