diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-01-30 07:31:17 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:31:17 -0500 |
commit | 341d8854d38fe6e7655f7748babae5c25a51aa70 (patch) | |
tree | 38c2baa4db7755e3a8cb359238fbb3073d6e0b7b /include/asm-x86/hw_irq_32.h | |
parent | 75604d7f7f1ee93e4d19d9e19f4497b7ed842f2a (diff) |
x86: remove fastcall from include/asm-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 'include/asm-x86/hw_irq_32.h')
-rw-r--r-- | include/asm-x86/hw_irq_32.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/asm-x86/hw_irq_32.h b/include/asm-x86/hw_irq_32.h index 0bedbdf5e907..b93e35a708ac 100644 --- a/include/asm-x86/hw_irq_32.h +++ b/include/asm-x86/hw_irq_32.h | |||
@@ -29,16 +29,16 @@ | |||
29 | extern void (*interrupt[NR_IRQS])(void); | 29 | extern void (*interrupt[NR_IRQS])(void); |
30 | 30 | ||
31 | #ifdef CONFIG_SMP | 31 | #ifdef CONFIG_SMP |
32 | fastcall void reschedule_interrupt(void); | 32 | void reschedule_interrupt(void); |
33 | fastcall void invalidate_interrupt(void); | 33 | void invalidate_interrupt(void); |
34 | fastcall void call_function_interrupt(void); | 34 | void call_function_interrupt(void); |
35 | #endif | 35 | #endif |
36 | 36 | ||
37 | #ifdef CONFIG_X86_LOCAL_APIC | 37 | #ifdef CONFIG_X86_LOCAL_APIC |
38 | fastcall void apic_timer_interrupt(void); | 38 | void apic_timer_interrupt(void); |
39 | fastcall void error_interrupt(void); | 39 | void error_interrupt(void); |
40 | fastcall void spurious_interrupt(void); | 40 | void spurious_interrupt(void); |
41 | fastcall void thermal_interrupt(void); | 41 | void thermal_interrupt(void); |
42 | #define platform_legacy_irq(irq) ((irq) < 16) | 42 | #define platform_legacy_irq(irq) ((irq) < 16) |
43 | #endif | 43 | #endif |
44 | 44 | ||