diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-01-30 13:31:17 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 13:31:17 +0100 |
commit | 75604d7f7f1ee93e4d19d9e19f4497b7ed842f2a (patch) | |
tree | ca8f9af34d70e237b78ca47c225fbbbbe1a64fac /arch/x86/kernel/cpu/mcheck/p5.c | |
parent | 56c4da454de1264e381256f658f61b9ef690dd21 (diff) | |
download | op-kernel-dev-75604d7f7f1ee93e4d19d9e19f4497b7ed842f2a.zip op-kernel-dev-75604d7f7f1ee93e4d19d9e19f4497b7ed842f2a.tar.gz |
x86: remove all definitions with fastcall
fastcall is always defined to be empty, remove it from arch/x86
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/cpu/mcheck/p5.c')
-rw-r--r-- | arch/x86/kernel/cpu/mcheck/p5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/p5.c b/arch/x86/kernel/cpu/mcheck/p5.c index 94bc43d..a18310a 100644 --- a/arch/x86/kernel/cpu/mcheck/p5.c +++ b/arch/x86/kernel/cpu/mcheck/p5.c @@ -16,7 +16,7 @@ #include "mce.h" /* Machine check handler for Pentium class Intel */ -static fastcall void pentium_machine_check(struct pt_regs * regs, long error_code) +static void pentium_machine_check(struct pt_regs * regs, long error_code) { u32 loaddr, hi, lotype; rdmsr(MSR_IA32_P5_MC_ADDR, loaddr, hi); |