]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
arm: imx: parse-container: add some missing end of line
authorClément Péron <peron.clem@gmail.com>
Wed, 30 Mar 2022 11:49:30 +0000 (13:49 +0200)
committerStefano Babic <sbabic@denx.de>
Tue, 12 Apr 2022 15:33:55 +0000 (17:33 +0200)
Some printf() have strings that doesn't terminate with end of line
and make the output hard to read.

Signed-off-by: Clément Péron <peron.clem@gmail.com>
Reviewed-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
arch/arm/mach-imx/parse-container.c

index 039a4c73035a9d5c65180842869b81635007c041..a4214d537685a0f7c563a7cfe16e3a0eab62cff9 100644 (file)
@@ -142,12 +142,12 @@ static int read_auth_container(struct spl_image_info *spl_image,
                return -EIO;
 
        if (container->tag != 0x87 && container->version != 0x0) {
-               printf("Wrong container header");
+               printf("Wrong container header\n");
                return -ENOENT;
        }
 
        if (!container->num_images) {
-               printf("Wrong container, no image found");
+               printf("Wrong container, no image found\n");
                return -ENOENT;
        }