From: Simon Glass Date: Sun, 30 Jul 2023 17:15:59 +0000 (-0600) Subject: x86: spl: Drop unwanted debug() X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=22080e05fc4bcfd8c25474ca3ecfce4814fa486d;p=u-boot.git x86: spl: Drop unwanted debug() This was left over from some previous debugging. Drop it. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/lib/spl.c b/arch/x86/lib/spl.c index b6812bb8ca..55c0615708 100644 --- a/arch/x86/lib/spl.c +++ b/arch/x86/lib/spl.c @@ -137,7 +137,6 @@ static int x86_spl_init(void) } #ifndef CONFIG_SYS_COREBOOT - log_debug("bss\n"); debug("BSS clear from %lx to %lx len %lx\n", (ulong)&__bss_start, (ulong)&__bss_end, (ulong)&__bss_end - (ulong)&__bss_start); memset(&__bss_start, 0, (ulong)&__bss_end - (ulong)&__bss_start);