diff options
author | Jaswinder Singh <jaswinder@infradead.org> | 2008-07-21 21:52:51 +0530 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-22 14:36:01 +0200 |
commit | cc0384917bf69079088701a0725c5fc6b554bf35 (patch) | |
tree | d6c5666421b5efd1ef2e492c88416f07e0c8d123 /arch/x86/kernel/time_32.c | |
parent | b994b6c0332a5499b33880855dadad04d74cde54 (diff) | |
download | blackbird-op-linux-cc0384917bf69079088701a0725c5fc6b554bf35.tar.gz blackbird-op-linux-cc0384917bf69079088701a0725c5fc6b554bf35.zip |
x86: time_XX.c declare functions before they get used
Declare time_init() in asm-x86/time.h
Also did cleanup in asm-x86/timer.h :
timer_ack is only required for X86_32
int recalibrate_cpu_khz(void) is for X86_32
Signed-off-by: Jaswinder Singh <jaswinder@infradead.org>
Diffstat (limited to 'arch/x86/kernel/time_32.c')
-rw-r--r-- | arch/x86/kernel/time_32.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/time_32.c b/arch/x86/kernel/time_32.c index ffe3c664afc0..bbecf8b6bf96 100644 --- a/arch/x86/kernel/time_32.c +++ b/arch/x86/kernel/time_32.c @@ -36,6 +36,7 @@ #include <asm/arch_hooks.h> #include <asm/hpet.h> #include <asm/time.h> +#include <asm/timer.h> #include "do_timer.h" |