diff options
author | Joel Johnson | 2020-04-25 20:54:56 -0600 |
---|---|---|
committer | Stefan Roese | 2020-05-04 07:04:04 +0200 |
commit | b40745e5c29a45ebe7efce53a1e3ba751d0ef351 (patch) | |
tree | ca3ab0254214cf17ea85d51fa0976951460c3b62 /cmd | |
parent | f49ac7e1c4107b88f30ab34b039e1c7ebff2d469 (diff) |
cmd: mvebu: bubt: fix quoted string split across lines
Update quoted string alignment to address checkpatch.pl warning
originally introduced in
commit f60a66ef5d7d ("cmd: mvebu: bubt: show image boot device").
Signed-off-by: Joel Johnson <mrjoel@lixil.net>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/mvebu/bubt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mvebu/bubt.c b/cmd/mvebu/bubt.c index dc0ce01c358..ef53153c46b 100644 --- a/cmd/mvebu/bubt.c +++ b/cmd/mvebu/bubt.c @@ -730,8 +730,8 @@ static int bubt_check_boot_mode(const struct bubt_dev *dst) for (int i = 0; i < ARRAY_SIZE(a38x_boot_modes); i++) { if (a38x_boot_modes[i].id == hdr->blockid) { - printf("Error: A38x image meant to be " - "booted from \"%s\", not \"%s\"!\n", + printf("Error: A38x image meant to be booted from " + "\"%s\", not \"%s\"!\n", a38x_boot_modes[i].name, dst->name); return -ENOEXEC; } |