diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-11-28 10:07:42 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-11-30 19:39:37 -0500 |
commit | e6a1bb725eab1348d4a985b7faeff8186210d7b4 (patch) | |
tree | 89ab8c1f804a3658938250fe58ba40b2fb318da0 /arch/mips | |
parent | 54fd6441e04696c046d93e4407a9e1ee9b874e51 (diff) |
[MIPS] Fix build.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/csrc-r4k.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/mips/kernel/csrc-r4k.c b/arch/mips/kernel/csrc-r4k.c index 74c5c62365a8..0e2b5cd81f67 100644 --- a/arch/mips/kernel/csrc-r4k.c +++ b/arch/mips/kernel/csrc-r4k.c | |||
@@ -5,6 +5,10 @@ | |||
5 | * | 5 | * |
6 | * Copyright (C) 2007 by Ralf Baechle | 6 | * Copyright (C) 2007 by Ralf Baechle |
7 | */ | 7 | */ |
8 | #include <linux/clocksource.h> | ||
9 | #include <linux/init.h> | ||
10 | |||
11 | #include <asm/time.h> | ||
8 | 12 | ||
9 | static cycle_t c0_hpt_read(void) | 13 | static cycle_t c0_hpt_read(void) |
10 | { | 14 | { |
@@ -18,7 +22,7 @@ static struct clocksource clocksource_mips = { | |||
18 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, | 22 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
19 | }; | 23 | }; |
20 | 24 | ||
21 | static void __init init_mips_clocksource(void) | 25 | void __init init_mips_clocksource(void) |
22 | { | 26 | { |
23 | /* Calclate a somewhat reasonable rating value */ | 27 | /* Calclate a somewhat reasonable rating value */ |
24 | clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000; | 28 | clocksource_mips.rating = 200 + mips_hpt_frequency / 10000000; |