X86_SMP: smp.c declare functions before they get used
authorJaswinder Singh <jaswinder@infradead.org>
Fri, 25 Jul 2008 05:12:26 +0000 (10:42 +0530)
committerJaswinder Singh <jaswinder@infradead.org>
Fri, 25 Jul 2008 06:26:50 +0000 (11:56 +0530)
declared following smp interrupts in asm-x86/hw_irq.h:
smp_reschedule_interrupt, smp_call_function_interrupt, smp_call_function_single_interrupt

Signed-off-by: Jaswinder Singh <jaswinder@infradead.org>
include/asm-x86/hw_irq.h

index 40b941a..08900eb 100644 (file)
@@ -102,6 +102,11 @@ extern void smp_error_interrupt(struct pt_regs *);
 extern asmlinkage void smp_spurious_interrupt(void);
 extern asmlinkage void smp_error_interrupt(void);
 #endif
+#ifdef CONFIG_X86_SMP
+extern void smp_reschedule_interrupt(struct pt_regs *);
+extern void smp_call_function_interrupt(struct pt_regs *);
+extern void smp_call_function_single_interrupt(struct pt_regs *);
+#endif
 
 #ifdef CONFIG_X86_32
 extern void (*const interrupt[NR_IRQS])(void);