mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
cmd: mvebu: bubt: fix quoted string split across lines
Update quoted string alignment to address checkpatch.pl warning
originally introduced in
commit f60a66ef5d
("cmd: mvebu: bubt: show image boot device").
Signed-off-by: Joel Johnson <mrjoel@lixil.net>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
f49ac7e1c4
commit
b40745e5c2
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue