diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2007-02-28 11:53:13 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-03-04 14:02:35 -0500 |
commit | 12e4396bf0b1cd62c9d71a06596914c7efa7dbaf (patch) | |
tree | 5cac3c54cbd025c9e382b0aec0a39ea8bcfd4a6f /arch/mips/tx4938 | |
parent | a0574e04807608998d4d115c07b7bc12bb499a44 (diff) |
[MIPS] No need to write c0_compare in plat_timer_setup
If R4k counter was used for hpt_timer and interrupt source,
c0_hpt_timer_init() initializes the c0_compare register.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/tx4938')
-rw-r--r-- | arch/mips/tx4938/common/setup.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/mips/tx4938/common/setup.c b/arch/mips/tx4938/common/setup.c index dc87d92bb08d..142abf453e40 100644 --- a/arch/mips/tx4938/common/setup.c +++ b/arch/mips/tx4938/common/setup.c | |||
@@ -55,14 +55,5 @@ tx4938_time_init(void) | |||
55 | 55 | ||
56 | void __init plat_timer_setup(struct irqaction *irq) | 56 | void __init plat_timer_setup(struct irqaction *irq) |
57 | { | 57 | { |
58 | u32 count; | ||
59 | u32 c1; | ||
60 | u32 c2; | ||
61 | |||
62 | setup_irq(TX4938_IRQ_CPU_TIMER, irq); | 58 | setup_irq(TX4938_IRQ_CPU_TIMER, irq); |
63 | |||
64 | c1 = read_c0_count(); | ||
65 | count = c1 + (mips_hpt_frequency / HZ); | ||
66 | write_c0_compare(count); | ||
67 | c2 = read_c0_count(); | ||
68 | } | 59 | } |