[coreboot-gerrit] New patch to review for coreboot: cpu/cpu.h: Change guard around function declarations

Kyösti Mälkki (kyosti.malkki@gmail.com) gerrit at coreboot.org
Tue Jun 21 00:26:33 CEST 2016


Kyösti Mälkki (kyosti.malkki at gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15274

-gerrit

commit 6f565713862bf723739444a238c7413112c0490d
Author: Kyösti Mälkki <kyosti.malkki at gmail.com>
Date:   Mon Jun 20 21:59:19 2016 +0300

    cpu/cpu.h: Change guard around function declarations
    
    This file is pulled for x86 bootblock builds using ROMCC,
    which would choke on struct bus.
    
    Change-Id: Ie3566cd5cfc4b4e0e910b47785449de81a07b9ef
    Signed-off-by: Kyösti Mälkki <kyosti.malkki at gmail.com>
---
 src/include/cpu/cpu.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/include/cpu/cpu.h b/src/include/cpu/cpu.h
index 8db8085..bf622d7 100644
--- a/src/include/cpu/cpu.h
+++ b/src/include/cpu/cpu.h
@@ -3,7 +3,7 @@
 
 #include <arch/cpu.h>
 
-#if !defined(__PRE_RAM__) && !defined(__SMM__)
+#if !defined(__ROMCC__)
 void cpu_initialize(unsigned int cpu_index);
 struct bus;
 void initialize_cpus(struct bus *cpu_bus);
@@ -20,6 +20,6 @@ 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 /* !__ROMCC__ */
 
 #endif /* CPU_CPU_H */



More information about the coreboot-gerrit mailing list