From efbfd501fee8decd0942808a47a3f9e93d30ae38 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Fri, 17 Dec 2010 00:03:18 +0000 Subject: guard against the case that CONFIG_WAIT_BEFORE_CPUS_INIT is not defined at all. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6190 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/include/cpu/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/cpu/cpu.h b/src/include/cpu/cpu.h index b64fd3ce2c..d33b6da62e 100644 --- a/src/include/cpu/cpu.h +++ b/src/include/cpu/cpu.h @@ -9,7 +9,7 @@ void cpu_initialize(void); void initialize_cpus(struct bus *cpu_bus); void secondary_cpu_init(void); -#if CONFIG_WAIT_BEFORE_CPUS_INIT==0 +#if !defined(CONFIG_WAIT_BEFORE_CPUS_INIT) || CONFIG_WAIT_BEFORE_CPUS_INIT==0 #define cpus_ready_for_init() do {} while(0) #else void cpus_ready_for_init(void); -- cgit v1.2.3