From 09455d3a8fe0f3413a820fc26f016a2d9ec496e8 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 20 Oct 2019 21:37:56 -0600 Subject: 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 Reviewed-by: Bin Meng --- arch/x86/lib/tpl.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'arch') diff --git a/arch/x86/lib/tpl.c b/arch/x86/lib/tpl.c index 363984f..815849c 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; } -- cgit v1.1