aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/haswell/mp_init.c
diff options
context:
space:
mode:
authorAaron Durbin <adurbin@chromium.org>2013-02-08 22:31:33 -0600
committerRonald G. Minnich <rminnich@gmail.com>2013-03-21 22:47:42 +0100
commitef4275bc2e4332ed9b6f3ac25060687794f0b98d (patch)
tree64a0d09402ab1a5e1c5620fb170ab6364ec1bd11 /src/cpu/intel/haswell/mp_init.c
parente2d9e5bfa99e56eff56ab9b0f3389cfccd9670d6 (diff)
x86: protect against abi assumptions from compiler
Some of the functions called from assembly assume the standard x86 32-bit ABI of passing all arguments on the stack. However, that calling ABI can be changed by compiler flags. In order to protect against the current implicit calling convention annotate the functions called from assembly with the cdecl function attribute. That tells the compiler to use the stack based parameter calling convention. Change-Id: I83625e1f92c6821a664b191b6ce1250977cf037a Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/2794 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu/intel/haswell/mp_init.c')
-rw-r--r--src/cpu/intel/haswell/mp_init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/intel/haswell/mp_init.c b/src/cpu/intel/haswell/mp_init.c
index 47683fb78c..7f15c391d7 100644
--- a/src/cpu/intel/haswell/mp_init.c
+++ b/src/cpu/intel/haswell/mp_init.c
@@ -149,7 +149,8 @@ static void cleanup_rom_caching(void)
/* By the time APs call ap_init() caching has been setup, and microcode has
* been loaded. */
-static void ap_init(unsigned int cpu, void *microcode_ptr)
+static void __attribute__((cdecl))
+ap_init(unsigned int cpu, void *microcode_ptr)
{
struct cpu_info *info;