summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-10-20 21:37:57 -0600
committerBin Meng <bmeng.cn@gmail.com>2019-11-03 07:20:29 +0800
commit73c6cd6c0bdb3af76d573f619bbcc141758bb16b (patch)
tree8d0865023bfd580e058fa99577962bd39b2dd35a
parent09455d3a8fe0f3413a820fc26f016a2d9ec496e8 (diff)
downloadu-boot-73c6cd6c0bdb3af76d573f619bbcc141758bb16b.tar.gz
x86: Quieten TPL's jump_to_image_no_args()
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>
-rw-r--r--arch/x86/lib/tpl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/tpl.c b/arch/x86/lib/tpl.c
index 815849c7ff..784e3a02de 100644
--- a/arch/x86/lib/tpl.c
+++ b/arch/x86/lib/tpl.c
@@ -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();
}