From 05a7ffa25be465aea7a7aa22fdf443322abd95cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ky=C3=B6sti=20M=C3=A4lkki?= Date: Fri, 28 Dec 2018 17:05:08 +0200 Subject: bootblock: Move function prototype MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I01ecb9a16099ac6189ce3f0bdbd43c23ad7c621d Signed-off-by: Kyösti Mälkki Reviewed-on: https://review.coreboot.org/c/30488 Reviewed-by: Arthur Heymans Tested-by: build bot (Jenkins) --- src/cpu/qemu-x86/bootblock.c | 2 -- src/include/bootblock_common.h | 1 + 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/cpu/qemu-x86/bootblock.c b/src/cpu/qemu-x86/bootblock.c index fd14c7e0ef..8dcf576990 100644 --- a/src/cpu/qemu-x86/bootblock.c +++ b/src/cpu/qemu-x86/bootblock.c @@ -18,8 +18,6 @@ #include #include -asmlinkage void bootblock_c_entry_bist(uint64_t base_timestamp, uint32_t bist); - asmlinkage void bootblock_c_entry_bist(uint64_t base_timestamp, uint32_t bist) { post_code(0x05); diff --git a/src/include/bootblock_common.h b/src/include/bootblock_common.h index 7af0cebe63..08b2b7ad6d 100644 --- a/src/include/bootblock_common.h +++ b/src/include/bootblock_common.h @@ -36,6 +36,7 @@ void bootblock_soc_init(void); * C code entry point for the boot block. */ asmlinkage void bootblock_c_entry(uint64_t base_timestamp); +asmlinkage void bootblock_c_entry_bist(uint64_t base_timestamp, uint32_t bist); /* * This is a the same as the bootblock main(), with the difference that it does -- cgit v1.2.3