cpu/cpu.h: Allow compiling with __SIMPLE_DEVICE__

Change-Id: I14a2ac47198be6359b4f10b38f1cf86c9917d67e
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/4602
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
Vladimir Serbinenko 2014-01-02 10:08:19 +01:00
parent 503e4fef17
commit 98dda06e7a
1 changed files with 2 additions and 0 deletions

View File

@ -16,10 +16,12 @@ void smm_setup_structures(void *gnvs, void *tcg, void *smi1);
#endif #endif
#define __cpu_driver __attribute__ ((used,__section__(".rodata.cpu_driver"))) #define __cpu_driver __attribute__ ((used,__section__(".rodata.cpu_driver")))
#ifndef __SIMPLE_DEVICE__
/** start of compile time generated pci driver array */ /** start of compile time generated pci driver array */
extern struct cpu_driver cpu_drivers[]; extern struct cpu_driver cpu_drivers[];
/** end of compile time generated pci driver array */ /** end of compile time generated pci driver array */
extern struct cpu_driver ecpu_drivers[]; extern struct cpu_driver ecpu_drivers[];
#endif
#endif /* !__PRE_RAM__ && !__SMM__ */ #endif /* !__PRE_RAM__ && !__SMM__ */
#endif /* CPU_CPU_H */ #endif /* CPU_CPU_H */