diff options
| author | Seung-Woo Kim <[email protected]> | 2018-06-04 16:04:51 +0900 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2018-06-07 20:06:29 -0400 |
| commit | 71002b508a1bc0986023764f155f0db26f548db2 (patch) | |
| tree | f452e92246a29383b323d19c9963910fdf77251e /cmd/fastboot.c | |
| parent | 5c890b1bc85af5cfb05916e360dc2919ec18ac12 (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 <[email protected]>
Diffstat (limited to 'cmd/fastboot.c')
| -rw-r--r-- | cmd/fastboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/fastboot.c b/cmd/fastboot.c index 557257aef84..e6ae0570d5b 100644 --- a/cmd/fastboot.c +++ b/cmd/fastboot.c @@ -48,7 +48,7 @@ static int do_fastboot_usb(int argc, char *const argv[], ret = board_usb_init(controller_index, USB_INIT_DEVICE); if (ret) { - pr_err("USB init failed: %d", ret); + pr_err("USB init failed: %d\n", ret); return CMD_RET_FAILURE; } |
