summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2020-05-04 11:05:48 -0400
committerTom Rini <[email protected]>2020-05-04 11:05:48 -0400
commita1f5f4ac20c0947afda93f9b906facfbee2708fe (patch)
treec80b3bcd8031c8613d8f7b3c8c95c3079e9d81e4 /cmd
parent143414c03fa72468fa8ce0d1ded21a4a616400f9 (diff)
parentb40745e5c29a45ebe7efce53a1e3ba751d0ef351 (diff)
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-marvell
- 2 MVEBU related fixes
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mvebu/bubt.c4
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;
}