diff options
author | Simon Glass <sjg@chromium.org> | 2025-03-15 14:25:34 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-03 11:41:55 -0600 |
commit | 1111d92360cf51aac136945b7b5ddbd6a745dc42 (patch) | |
tree | 51ca46ed91eb21664d71590ef0cb065a6aa41567 | |
parent | e93da0399cd41f0f9d5866a3e884bfdd4e573e9c (diff) |
x86: Drop the message about features missing in 64-bit
This functions normally and has done for a while, so drop this scary
message.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | arch/x86/lib/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/spl.c b/arch/x86/lib/spl.c index 47cf9c862b5..0a6a761987e 100644 --- a/arch/x86/lib/spl.c +++ b/arch/x86/lib/spl.c @@ -281,7 +281,7 @@ void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image) { int ret; - printf("Jumping to 64-bit U-Boot: Note many features are missing\n"); + log_debug("Jumping to 64-bit U-Boot\n"); ret = cpu_jump_to_64bit_uboot(spl_image->entry_point); debug("ret=%d\n", ret); hang(); |