x86: Quieten TPL's jump_to_image_no_args()
authorSimon Glass <sjg@chromium.org>
Mon, 21 Oct 2019 03:37:57 +0000 (21:37 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Sat, 2 Nov 2019 23:20:29 +0000 (07:20 +0800)
We already a message indicating that U-Boot is about to jump to SPL, so
make this one a debug() to reduce code size.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
arch/x86/lib/tpl.c

index 815849c..784e3a0 100644 (file)
@@ -107,7 +107,7 @@ int spl_spi_load_image(void)
 
 void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
 {
-       printf("Jumping to U-Boot SPL at %lx\n", (ulong)spl_image->entry_point);
+       debug("Jumping to U-Boot SPL at %lx\n", (ulong)spl_image->entry_point);
        jump_to_spl(spl_image->entry_point);
        hang();
 }