aboutsummaryrefslogtreecommitdiff
path: root/src/include/cpu/cpu.h
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2014-01-02 10:08:19 +0100
committerVladimir Serbinenko <phcoder@gmail.com>2014-01-06 09:47:01 +0100
commit98dda06e7ae3dba0a53f13a5436675deeceff733 (patch)
tree0b2d5d2960eebaf1833e51673d0167e931a0fc24 /src/include/cpu/cpu.h
parent503e4fef17666b1145aba21313f471ddb727a074 (diff)
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>
Diffstat (limited to 'src/include/cpu/cpu.h')
-rw-r--r--src/include/cpu/cpu.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/cpu/cpu.h b/src/include/cpu/cpu.h
index bed77de017..47521d45fe 100644
--- a/src/include/cpu/cpu.h
+++ b/src/include/cpu/cpu.h
@@ -16,10 +16,12 @@ void smm_setup_structures(void *gnvs, void *tcg, void *smi1);
#endif
#define __cpu_driver __attribute__ ((used,__section__(".rodata.cpu_driver")))
+#ifndef __SIMPLE_DEVICE__
/** start of compile time generated pci driver array */
extern struct cpu_driver cpu_drivers[];
/** end of compile time generated pci driver array */
extern struct cpu_driver ecpu_drivers[];
+#endif
#endif /* !__PRE_RAM__ && !__SMM__ */
#endif /* CPU_CPU_H */