guard against the case that CONFIG_WAIT_BEFORE_CPUS_INIT is not defined at all.

Signed-off-by: Stefan Reinauer <stepan@coreboot.org>
Acked-by: Stefan Reinauer <stepan@coreboot.org>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6190 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2010-12-17 00:03:18 +00:00 committed by Stefan Reinauer
parent 43c1a21733
commit efbfd501fe
1 changed files with 1 additions and 1 deletions

View File

@ -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);