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-21 18:37:09 -0700 |
commit | f0a7a5c93dfd1c0348dbbdb6f22cb82d99079c93 (patch) | |
tree | f6c265635c6a6185bbfce1167580bae99072b2ad /arch/i386 | |
parent | 3f9c8d19d26e016de31d1e59a573913edc64ce5c (diff) | |
download | kernel_samsung_smdk4412-f0a7a5c93dfd1c0348dbbdb6f22cb82d99079c93.zip kernel_samsung_smdk4412-f0a7a5c93dfd1c0348dbbdb6f22cb82d99079c93.tar.gz kernel_samsung_smdk4412-f0a7a5c93dfd1c0348dbbdb6f22cb82d99079c93.tar.bz2 |
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 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; |