From 1e1e75dba7b9db86ce10a0ea198ad5bc83a45547 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Fri, 16 Sep 2022 14:05:45 +0200 Subject: [PATCH] software/bios/boot: Fix missing CONFIG_BIOS_NO_DELAYS update. --- litex/soc/software/bios/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/software/bios/boot.c b/litex/soc/software/bios/boot.c index e79ce6e6b..d30df1385 100755 --- a/litex/soc/software/bios/boot.c +++ b/litex/soc/software/bios/boot.c @@ -111,7 +111,7 @@ void romboot(void) static void timer0_load(unsigned int value) { timer0_en_write(0); timer0_reload_write(0); -#ifndef CONFIG_DISABLE_DELAYS +#ifndef CONFIG_BIOS_NO_DELAYS timer0_load_write(value); #else timer0_load_write(0);