diff options
author | Glauber de Oliveira Costa <gcosta@redhat.com> | 2007-07-21 11:11:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-21 21:37:12 -0400 |
commit | 99253b8e734a7a773c0e4bedd7d8d1847c98c538 (patch) | |
tree | ed832a0d85ca73f51d28c4f279ebfcf8bd96dccb /arch/x86_64/kernel/i8259.c | |
parent | d24e399763f9e91cc03e4e351d75f6231d5ed4f2 (diff) |
x86_64: Move functions declarations to header file
Some interrupt entry points are currently defined in i8259.c They probably
belong in a header. Right now, their only user is init_IRQ, justifying
their declaration in-file. But when virtualization comes in, we may be
interested in using that functions in late initializations.
Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86_64/kernel/i8259.c')
-rw-r--r-- | arch/x86_64/kernel/i8259.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/x86_64/kernel/i8259.c b/arch/x86_64/kernel/i8259.c index 4b326655b208..948cae646099 100644 --- a/arch/x86_64/kernel/i8259.c +++ b/arch/x86_64/kernel/i8259.c | |||
@@ -444,24 +444,6 @@ void __init init_ISA_irqs (void) | |||
444 | } | 444 | } |
445 | } | 445 | } |
446 | 446 | ||
447 | void apic_timer_interrupt(void); | ||
448 | void spurious_interrupt(void); | ||
449 | void error_interrupt(void); | ||
450 | void reschedule_interrupt(void); | ||
451 | void call_function_interrupt(void); | ||
452 | void irq_move_cleanup_interrupt(void); | ||
453 | void invalidate_interrupt0(void); | ||
454 | void invalidate_interrupt1(void); | ||
455 | void invalidate_interrupt2(void); | ||
456 | void invalidate_interrupt3(void); | ||
457 | void invalidate_interrupt4(void); | ||
458 | void invalidate_interrupt5(void); | ||
459 | void invalidate_interrupt6(void); | ||
460 | void invalidate_interrupt7(void); | ||
461 | void thermal_interrupt(void); | ||
462 | void threshold_interrupt(void); | ||
463 | void i8254_timer_resume(void); | ||
464 | |||
465 | static void setup_timer_hardware(void) | 447 | static void setup_timer_hardware(void) |
466 | { | 448 | { |
467 | outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ | 449 | outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ |