diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-07-21 17:10:29 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-22 03:37:09 +0200 |
commit | f0a7a5c93dfd1c0348dbbdb6f22cb82d99079c93 (patch) | |
tree | f6c265635c6a6185bbfce1167580bae99072b2ad /arch/i386 | |
parent | i386: arch/i386/kernel/i8253.c should #include <asm/timer.h> (diff) | |
download | linux-f0a7a5c93dfd1c0348dbbdb6f22cb82d99079c93.tar.xz linux-f0a7a5c93dfd1c0348dbbdb6f22cb82d99079c93.zip |
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/i386')
-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 21db8f56c9a1..1bc4f7e4ed21 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; |