cmd: add missing line breaks for pr_err()
authorSeung-Woo Kim <sw0312.kim@samsung.com>
Mon, 4 Jun 2018 07:04:51 +0000 (16:04 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Thu, 10 Oct 2019 04:38:41 +0000 (13:38 +0900)
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@samsung.com>
[sw0312.kim: cherry-pick from mainline to fix error log]

Change-Id: I8aa616cb4c1e6d4ab250ba89cb75214f33488a6f

cmd/thordown.c

index a73f46f14be537616a67485ab3b4de5ed65d51d8..d1b62cea9f3ad0c7da2b98ec3107915800dc9243 100644 (file)
@@ -63,7 +63,7 @@ int do_thor_down(cmd_tbl_t *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