diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-21 15:10:29 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-22 01:37:09 (GMT) |
commit | f0a7a5c93dfd1c0348dbbdb6f22cb82d99079c93 (patch) | |
tree | f6c265635c6a6185bbfce1167580bae99072b2ad /arch | |
parent | 3f9c8d19d26e016de31d1e59a573913edc64ce5c (diff) | |
download | linux-f0a7a5c93dfd1c0348dbbdb6f22cb82d99079c93.tar.xz |
i386: timer_irq_works() static again
timer_irq_works() needlessly became global.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
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')
-rw-r--r-- | arch/i386/kernel/io_apic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/io_apic.c b/arch/i386/kernel/io_apic.c index 21db8f5..1bc4f7e 100644 --- a/arch/i386/kernel/io_apic.c +++ b/arch/i386/kernel/io_apic.c @@ -1902,7 +1902,7 @@ __setup("no_timer_check", notimercheck); * - if this function detects that timer IRQs are defunct, then we fall * back to ISA timer IRQs */ -int __init timer_irq_works(void) +static int __init timer_irq_works(void) { unsigned long t1 = jiffies; |