diff options
author | Glauber de Oliveira Costa <gcosta@redhat.com> | 2008-01-30 07:33:19 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:19 -0500 |
commit | b03878307a78ba0248f6f8d24279c846f1a26f6e (patch) | |
tree | adbd4e225c31415995ea892b5b8089f7ccd970b5 /arch/x86 | |
parent | 8a650ce297c723ebe7da17ec2890f6971438aee1 (diff) |
x86: provide a native_init_IRQ function on 64-bit
x86_64 lacks a native_init_IRQ() function, so we turn the arch's
init_IRQ() function into a native construct
Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/i8259_64.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kernel/i8259_64.c b/arch/x86/kernel/i8259_64.c index d3edb9f23f2c..fa57a1568508 100644 --- a/arch/x86/kernel/i8259_64.c +++ b/arch/x86/kernel/i8259_64.c | |||
@@ -456,7 +456,9 @@ void __init init_ISA_irqs (void) | |||
456 | } | 456 | } |
457 | } | 457 | } |
458 | 458 | ||
459 | void __init init_IRQ(void) | 459 | void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ"))); |
460 | |||
461 | void __init native_init_IRQ(void) | ||
460 | { | 462 | { |
461 | int i; | 463 | int i; |
462 | 464 | ||