From 758076cceb450da4848a8ce944fa679d7403147c Mon Sep 17 00:00:00 2001 From: Aaron Durbin Date: Tue, 7 May 2013 12:58:12 -0500 Subject: x86: use asmlinkage macro for smm_handler_t The smm_handler_t type was added before the introduction of the asmlinkage macro. Now that asmlinkage is available use it. Change-Id: I85ec72cf958bf4b77513a85faf6d300c781af603 Signed-off-by: Aaron Durbin Reviewed-on: http://review.coreboot.org/3215 Reviewed-by: Stefan Reinauer Tested-by: build bot (Jenkins) --- src/include/cpu/x86/smm.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/include/cpu') diff --git a/src/include/cpu/x86/smm.h b/src/include/cpu/x86/smm.h index 62494a9f97..df7e3de5a6 100644 --- a/src/include/cpu/x86/smm.h +++ b/src/include/cpu/x86/smm.h @@ -33,6 +33,7 @@ #define SMM_ENTRY_OFFSET 0x8000 #define SMM_SAVE_STATE_BEGIN(x) (SMM_ENTRY_OFFSET + (x)) +#include #include typedef struct { u16 es_selector; @@ -429,8 +430,8 @@ struct smm_runtime { u8 apic_id_to_cpu[CONFIG_MAX_CPUS]; } __attribute__ ((packed)); -typedef void __attribute__((cdecl)) (*smm_handler_t)(void *arg, int cpu, - const struct smm_runtime *runtime); +typedef void asmlinkage (*smm_handler_t)(void *arg, int cpu, + const struct smm_runtime *runtime); #ifdef __SMM__ /* SMM Runtime helpers. */ -- cgit v1.2.3