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
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