Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/70925 )
Change subject: nb/intel/ironlake/ironlake.h: Remove unnecessary guard ......................................................................
nb/intel/ironlake/ironlake.h: Remove unnecessary guard
__ACPI__ is covered through __ASSEMBLER__.
Change-Id: Ibe862116334bb7faaeacc90c887b42e4f5b39cf9 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/northbridge/intel/ironlake/ironlake.h 1 file changed, 13 insertions(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/25/70925/1
diff --git a/src/northbridge/intel/ironlake/ironlake.h b/src/northbridge/intel/ironlake/ironlake.h index be5f11b..9e05040 100644 --- a/src/northbridge/intel/ironlake/ironlake.h +++ b/src/northbridge/intel/ironlake/ironlake.h @@ -24,7 +24,7 @@ #include <southbridge/intel/ibexpeak/pch.h>
/* Everything below this line is ignored in the DSDT */ -#ifndef __ACPI__ +#ifndef __ASSEMBLER__
/* Device 0:0.0 PCI configuration space (Host Bridge) */
@@ -100,8 +100,6 @@
#include "registers/dmibar.h"
-#ifndef __ASSEMBLER__ - void intel_ironlake_finalize_smm(void);
int bridge_silicon_revision(void); @@ -111,5 +109,4 @@ void mainboard_get_spd_map(u8 *spd_addrmap);
#endif -#endif #endif /* __NORTHBRIDGE_INTEL_IRONLAKE_IRONLAKE_H__ */