Skip to content

Commit

Permalink
X86_SMP: smp.c declare functions before they get used
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jaswinder Singh committed Jul 25, 2008
1 parent 4fe702c commit e7f08df
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/asm-x86/hw_irq.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit e7f08df

Please sign in to comment.