diff options
author | Naresh G Solanki <naresh.solanki@intel.com> | 2016-10-21 15:44:23 +0530 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-10-27 17:01:56 +0200 |
commit | 38f5a577ca48bb0608544d8922f7894197293b82 (patch) | |
tree | f1e0326768780a4cf4ae7768108cf51f44821478 /src/soc/intel | |
parent | d5353e36483daef462fd37e47aa4c0524f868ace (diff) | |
download | coreboot-38f5a577ca48bb0608544d8922f7894197293b82.tar.xz |
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>
Reviewed-on: https://review.coreboot.org/17084
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/skylake/include/soc/bootblock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/skylake/include/soc/bootblock.h b/src/soc/intel/skylake/include/soc/bootblock.h index bacbef8cff..4895912092 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 */ |