diff options
author | Simon Glass <sjg@chromium.org> | 2019-10-20 21:37:56 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-11-03 07:20:28 +0800 |
commit | 09455d3a8fe0f3413a820fc26f016a2d9ec496e8 (patch) | |
tree | c10760ed957a379e0cee91df6778e9283bddb918 /arch/x86/lib/tpl.c | |
parent | 0e72ac715007a85cf89683883bd84bdcfa185b0a (diff) |
x86: Don't print CPU info in TPL
We don't need to do this and it is done (in more detail) in U-Boot proper.
Drop this to save code space.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/lib/tpl.c')
-rw-r--r-- | arch/x86/lib/tpl.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/x86/lib/tpl.c b/arch/x86/lib/tpl.c index 363984f7f2..815849c7ff 100644 --- a/arch/x86/lib/tpl.c +++ b/arch/x86/lib/tpl.c @@ -45,11 +45,6 @@ static int x86_tpl_init(void) return ret; } preloader_console_init(); - ret = print_cpuinfo(); - if (ret) { - debug("%s: print_cpuinfo() failed\n", __func__); - return ret; - } return 0; } |