summaryrefslogtreecommitdiff
path: root/src/drivers/intel/fsp1_0/fsp_util.h
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2017-09-02 17:48:33 +1000
committerMartin Roth <martinroth@google.com>2017-09-13 19:18:08 +0000
commitf796dd86a79831f97bdb61ad7f29f140b8b941a5 (patch)
tree838d39d261a6e49ef7e6af8bcfd913bc53c6db12 /src/drivers/intel/fsp1_0/fsp_util.h
parent1fbc1927b14f133ef6827f56e4fc31aacc1b8fa9 (diff)
downloadcoreboot-f796dd86a79831f97bdb61ad7f29f140b8b941a5.tar.xz
fsp1_0/fsp_util: Rename global symbol find_fsp
To avoid error with symbol redefinition (using clang): src/drivers/intel/fsp1_0/fsp_util.c:111:22: error: invalid symbol redefinition ".global find_fsp\n\t" Rename the asm global symbol to find_fsp_bypass_prologue and fix jmp. Change-Id: I84c152f9a580fdfc40e9f6e998d2d6484b7f47df Signed-off-by: Damien Zammit <damien@zamaudio.com> Reviewed-on: https://review.coreboot.org/21353 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/drivers/intel/fsp1_0/fsp_util.h')
-rw-r--r--src/drivers/intel/fsp1_0/fsp_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/intel/fsp1_0/fsp_util.h b/src/drivers/intel/fsp1_0/fsp_util.h
index badd254f80..a3a7dd3119 100644
--- a/src/drivers/intel/fsp1_0/fsp_util.h
+++ b/src/drivers/intel/fsp1_0/fsp_util.h
@@ -25,7 +25,7 @@ int save_mrc_data(void *hob_start);
void * find_and_set_fastboot_cache(void);
#endif
-volatile u8 * find_fsp (void);
+volatile u8 * find_fsp(void);
void fsp_early_init(FSP_INFO_HEADER *fsp_info);
void FspNotify(u32 Phase);
void FspNotifyReturnPoint(EFI_STATUS Status, VOID *HobListPtr);