Skip to content
Snippets Groups Projects
Commit ace73189 authored by Simon Schwarz's avatar Simon Schwarz Committed by Albert ARIBAUD
Browse files

omap/spl: change output of spl_parse_image_header


This only outputs "Assuming u-boot.bin..." if debug is active.

Signed-off-by: default avatarSimon Schwarz <simonschwarzcor@gmail.com>
CC: Tom Rini <tom.rini@gmail.com>
CC: Stefano Babic <sbabic@denx.de>
CC: Wolfgang Denk <wd@denx.de>
parent 379c19ab
No related merge requests found
......@@ -101,7 +101,7 @@ void spl_parse_image_header(const struct image_header *header)
/* Signature not found - assume u-boot.bin */
printf("mkimage signature not found - ih_magic = %x\n",
header->ih_magic);
puts("Assuming u-boot.bin ..\n");
debug("Assuming u-boot.bin ..\n");
/* Let's assume U-Boot will not be more than 200 KB */
spl_image.size = 200 * 1024;
spl_image.entry_point = CONFIG_SYS_TEXT_BASE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment