]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
arm: imx: Add newlines after error messages
authorSean Anderson <seanga2@gmail.com>
Sat, 14 Oct 2023 20:47:41 +0000 (16:47 -0400)
committerTom Rini <trini@konsulko.com>
Wed, 18 Oct 2023 00:50:52 +0000 (20:50 -0400)
These error messages are missing newlines. Add them.

Fixes: 6e81ca220e0 ("imx: parse-container: Use malloc for container processing")
Signed-off-by: Sean Anderson <seanga2@gmail.com>
arch/arm/mach-imx/parse-container.c

index d7275a58c176da2284e572e9c10dfeb5f4aaccf7..c5df78d1c5826bed63821e00e16d460f288c7fef 100644 (file)
@@ -85,13 +85,13 @@ static int read_auth_container(struct spl_image_info *spl_image,
        }
 
        if (container->tag != 0x87 && container->version != 0x0) {
-               printf("Wrong container header");
+               printf("Wrong container header\n");
                ret = -ENOENT;
                goto end;
        }
 
        if (!container->num_images) {
-               printf("Wrong container, no image found");
+               printf("Wrong container, no image found\n");
                ret = -ENOENT;
                goto end;
        }