summaryrefslogtreecommitdiffstats
path: root/src/arch
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-09-27 15:02:32 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-09-28 21:18:03 +0000
commit44da9e201c58faf94ad22ec0fe18b693fd9d1239 (patch)
tree6ede114cf239e78967371cdb3f562678e7d01537 /src/arch
parentf2cc3dd8eaa14f1253cdab0326d5aa575d6ac354 (diff)
downloadcoreboot-44da9e201c58faf94ad22ec0fe18b693fd9d1239.tar.gz
coreboot-44da9e201c58faf94ad22ec0fe18b693fd9d1239.tar.bz2
coreboot-44da9e201c58faf94ad22ec0fe18b693fd9d1239.zip
cpu,device/: Remove some __SIMPLE_DEVICE__ and __ROMCC__ use
Change-Id: I62d7450c8e83eec7bf4ad5d0709269a132fd0499 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35649 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/include/arch/cpu.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/x86/include/arch/cpu.h b/src/arch/x86/include/arch/cpu.h
index 263b73452949..ffa532b47e09 100644
--- a/src/arch/x86/include/arch/cpu.h
+++ b/src/arch/x86/include/arch/cpu.h
@@ -214,7 +214,8 @@ static inline bool cpu_is_intel(void)
return CONFIG(CPU_INTEL_COMMON) || CONFIG(SOC_INTEL_COMMON);
}
-#ifndef __SIMPLE_DEVICE__
+#ifndef __ROMCC__
+/* romcc does not support anonymous structs. */
struct device;
@@ -258,9 +259,8 @@ static inline struct cpu_info *cpu_info(void)
);
return ci;
}
-#endif
-#ifndef __ROMCC__ // romcc is segfaulting in some cases
+/* romcc is segfaulting in some cases. */
struct cpuinfo_x86 {
uint8_t x86; /* CPU family */
uint8_t x86_vendor; /* CPU vendor */