diff options
author | Jan Beulich <jbeulich@novell.com> | 2008-01-30 13:31:23 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 13:31:23 +0100 |
commit | 3e7622f9d7807a0a826d042cafc211cd1a29448c (patch) | |
tree | b7eaa54e51668fcffa53d1104655d301447e9da7 /include/asm-x86/hw_irq_32.h | |
parent | x86-64: honor notify_die() returning NOTIFY_STOP (diff) | |
download | linux-3e7622f9d7807a0a826d042cafc211cd1a29448c.tar.xz linux-3e7622f9d7807a0a826d042cafc211cd1a29448c.zip |
x86: move to .rodata/.init.data
The array is never written, and on 64-bits it's not even being used
past initial boot.
Signed-off-by: Jan Beulich <jbeulich@novell.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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-x86/hw_irq_32.h b/include/asm-x86/hw_irq_32.h index b93e35a708ac..6d65fbb6358b 100644 --- a/include/asm-x86/hw_irq_32.h +++ b/include/asm-x86/hw_irq_32.h @@ -26,7 +26,7 @@ * Interrupt entry/exit code at both C and assembly level */ -extern void (*interrupt[NR_IRQS])(void); +extern void (*const interrupt[NR_IRQS])(void); #ifdef CONFIG_SMP void reschedule_interrupt(void); |