summaryrefslogtreecommitdiff
path: root/cmd/regulator.c
diff options
context:
space:
mode:
authorSeung-Woo Kim <sw0312.kim@samsung.com>2018-06-04 16:04:51 +0900
committerTom Rini <trini@konsulko.com>2018-06-07 20:06:29 -0400
commit71002b508a1bc0986023764f155f0db26f548db2 (patch)
treef452e92246a29383b323d19c9963910fdf77251e /cmd/regulator.c
parent5c890b1bc85af5cfb05916e360dc2919ec18ac12 (diff)
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@samsung.com>
Diffstat (limited to 'cmd/regulator.c')
-rw-r--r--cmd/regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/regulator.c b/cmd/regulator.c
index 89461b6ae8..ed8d778c82 100644
--- a/cmd/regulator.c
+++ b/cmd/regulator.c
@@ -70,7 +70,7 @@ static int curr_dev_and_platdata(struct udevice **devp,
*uc_pdata = dev_get_uclass_platdata(*devp);
if (!*uc_pdata) {
- pr_err("Regulator: %s - missing platform data!", currdev->name);
+ pr_err("Regulator: %s - missing platform data!\n", currdev->name);
return CMD_RET_FAILURE;
}