aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorClément Péron2022-03-30 13:49:30 +0200
committerStefano Babic2022-04-12 17:33:55 +0200
commit1697638e713d13968ba5c2d16efae3b896ffda3e (patch)
tree7324a6bf0a5100a49457ebc2670aa2d9d5c062c9 /arch
parent129f5102d2941715263fb806b57da5527e7fd9ed (diff)
arm: imx: parse-container: add some missing end of line
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>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-imx/parse-container.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/parse-container.c b/arch/arm/mach-imx/parse-container.c
index 039a4c73035..a4214d53768 100644
--- a/arch/arm/mach-imx/parse-container.c
+++ b/arch/arm/mach-imx/parse-container.c
@@ -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;
}