Naresh Solanki (naresh.solanki@intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17084
-gerrit
commit b020e5d6dc3c37fe973405e6821d3c4e4d417cde Author: Naresh G Solanki naresh.solanki@intel.com Date: Fri Oct 21 15:44:23 2016 +0530
soc/intel/skylake: make inline function static
Make bootblock_fsp_temp_ram_init as static inline.
Change-Id: Iacf24728a45fc6554d7a425feecc25e55ac5da6c Signed-off-by: Naresh G Solanki naresh.solanki@intel.com --- src/soc/intel/skylake/include/soc/bootblock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/soc/intel/skylake/include/soc/bootblock.h b/src/soc/intel/skylake/include/soc/bootblock.h index bacbef8..4895912 100644 --- a/src/soc/intel/skylake/include/soc/bootblock.h +++ b/src/soc/intel/skylake/include/soc/bootblock.h @@ -19,7 +19,7 @@ #if IS_ENABLED(CONFIG_PLATFORM_USES_FSP1_1) #include <fsp/bootblock.h> #else -inline void bootblock_fsp_temp_ram_init(void) {} +static inline void bootblock_fsp_temp_ram_init(void) {} #endif
/* Bootblock pre console init programing */