diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-05-02 14:10:09 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-05-12 15:28:05 -0400 |
commit | 9b7dc567d03d74a1fbae84e88949b6a60d922d82 (patch) | |
tree | 7b59581c40ea13373574daeb53a01e90729ddc7f /include/asm-x86/hw_irq.h | |
parent | 2e0884362d1fe36ef2d673d763d6ce35e2044e66 (diff) |
x86: unify interrupt vector defines
The interrupt vector defines are copied 4 times around with minimal
differences. Move them all into asm-x86/irq_vectors.h
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/hw_irq.h')
-rw-r--r-- | include/asm-x86/hw_irq.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/include/asm-x86/hw_irq.h b/include/asm-x86/hw_irq.h index 38af08ed43cf..a8c5e8bdaa49 100644 --- a/include/asm-x86/hw_irq.h +++ b/include/asm-x86/hw_irq.h | |||
@@ -13,7 +13,7 @@ | |||
13 | * unified by tglx | 13 | * unified by tglx |
14 | */ | 14 | */ |
15 | 15 | ||
16 | #define NMI_VECTOR 0x02 | 16 | #include <asm/irq_vectors.h> |
17 | 17 | ||
18 | #ifndef __ASSEMBLY__ | 18 | #ifndef __ASSEMBLY__ |
19 | 19 | ||
@@ -75,6 +75,16 @@ extern void send_IPI(int dest, int vector); | |||
75 | extern atomic_t irq_err_count; | 75 | extern atomic_t irq_err_count; |
76 | extern atomic_t irq_mis_count; | 76 | extern atomic_t irq_mis_count; |
77 | 77 | ||
78 | /* Voyager functions */ | ||
79 | extern asmlinkage void vic_cpi_interrupt(void); | ||
80 | extern asmlinkage void vic_sys_interrupt(void); | ||
81 | extern asmlinkage void vic_cmn_interrupt(void); | ||
82 | extern asmlinkage void qic_timer_interrupt(void); | ||
83 | extern asmlinkage void qic_invalidate_interrupt(void); | ||
84 | extern asmlinkage void qic_reschedule_interrupt(void); | ||
85 | extern asmlinkage void qic_enable_irq_interrupt(void); | ||
86 | extern asmlinkage void qic_call_function_interrupt(void); | ||
87 | |||
78 | #endif /* !ASSEMBLY_ */ | 88 | #endif /* !ASSEMBLY_ */ |
79 | 89 | ||
80 | #ifdef CONFIG_X86_32 | 90 | #ifdef CONFIG_X86_32 |