diff options
author | Simon Glass <sjg@chromium.org> | 2023-12-14 21:19:14 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-04-10 17:04:25 -0600 |
commit | cf70f75447133c497f9e5c56f2b33c8f2d3f08b5 (patch) | |
tree | d403e024ff7634078cfc70bc015021428aff7847 /arch/x86 | |
parent | 207282d905a26754aa1496c0c02d09dc8b27138e (diff) | |
download | u-boot-cf70f75447133c497f9e5c56f2b33c8f2d3f08b5.zip u-boot-cf70f75447133c497f9e5c56f2b33c8f2d3f08b5.tar.gz u-boot-cf70f75447133c497f9e5c56f2b33c8f2d3f08b5.tar.bz2 |
x86: Drop message about features being missing with 64-bit
At this point most things work, including booting a distro, so drop
this message.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86')
-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 c15f11f..4e4cf18 100644 --- a/arch/x86/lib/spl.c +++ b/arch/x86/lib/spl.c @@ -283,7 +283,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"); + printf("Jumping to 64-bit U-Boot\n"); ret = cpu_jump_to_64bit_uboot(spl_image->entry_point); debug("ret=%d\n", ret); hang(); |