diff options
author | Simon Glass <sjg@chromium.org> | 2023-07-30 11:15:59 -0600 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2023-08-09 23:31:11 +0800 |
commit | 22080e05fc4bcfd8c25474ca3ecfce4814fa486d (patch) | |
tree | 6351aa03cc9231ffb7c195759a1886adb31363b7 | |
parent | d60fb7a958780dc6215258430501d4c221b1ea0c (diff) | |
download | u-boot-22080e05fc4bcfd8c25474ca3ecfce4814fa486d.zip u-boot-22080e05fc4bcfd8c25474ca3ecfce4814fa486d.tar.gz u-boot-22080e05fc4bcfd8c25474ca3ecfce4814fa486d.tar.bz2 |
x86: spl: Drop unwanted debug()
This was left over from some previous debugging. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
-rw-r--r-- | arch/x86/lib/spl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/lib/spl.c b/arch/x86/lib/spl.c index b6812bb..55c0615 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); |