From: Seung-Woo Kim Date: Mon, 4 Jun 2018 07:04:51 +0000 (+0900) Subject: cmd: add missing line breaks for pr_err() X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b1db1de31fc9b5d2759af76635463e6ddb039869;p=platform%2Fkernel%2Fu-boot.git cmd: add missing line breaks for pr_err() After the commit 9b643e312d52 ("treewide: replace with error() with pr_err()"), there are some pr_err() with no line break. Add missing line breaks. Signed-off-by: Seung-Woo Kim [sw0312.kim: cherry-pick from mainline to fix error log] Change-Id: I8aa616cb4c1e6d4ab250ba89cb75214f33488a6f --- diff --git a/cmd/thordown.c b/cmd/thordown.c index d4ef6b090c..f75825b29e 100644 --- a/cmd/thordown.c +++ b/cmd/thordown.c @@ -65,7 +65,7 @@ int do_thor_down(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) ret = thor_init(); if (ret) { - printk("THOR DOWNLOAD failed: %d", ret); + printk("THOR DOWNLOAD failed: %d\n", ret); if (ret == -EINTR) ret = CMD_RET_SUCCESS; else