cmd: mvebu: bubt: fix quoted string split across lines
authorJoel Johnson <mrjoel@lixil.net>
Sun, 26 Apr 2020 02:54:56 +0000 (20:54 -0600)
committerStefan Roese <sr@denx.de>
Mon, 4 May 2020 05:04:04 +0000 (07:04 +0200)
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>
cmd/mvebu/bubt.c

index dc0ce01c358e2dd059cdde1f9b8e3f9031fd661f..ef53153c46b5ee5b3285d7e4294db853312ea43e 100644 (file)
@@ -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;
                        }