diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-07-09 21:38:56 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-07-13 21:26:17 +0100 |
commit | 54d0a216f40e060ba4265bb851cc36b3ca55d1a8 (patch) | |
tree | a57ecc2da68fea0989c397bd97ebd38e93fee569 /arch/mips/momentum/ocelot_3 | |
parent | 2c70df5b9807293705d8123d1f36579831ac09eb (diff) | |
download | kernel_samsung_smdk4412-54d0a216f40e060ba4265bb851cc36b3ca55d1a8.zip kernel_samsung_smdk4412-54d0a216f40e060ba4265bb851cc36b3ca55d1a8.tar.gz kernel_samsung_smdk4412-54d0a216f40e060ba4265bb851cc36b3ca55d1a8.tar.bz2 |
[MIPS] Replace board_timer_setup function pointer by plat_timer_setup.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
---
Diffstat (limited to 'arch/mips/momentum/ocelot_3')
-rw-r--r-- | arch/mips/momentum/ocelot_3/setup.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/mips/momentum/ocelot_3/setup.c b/arch/mips/momentum/ocelot_3/setup.c index 8c53490..435d078 100644 --- a/arch/mips/momentum/ocelot_3/setup.c +++ b/arch/mips/momentum/ocelot_3/setup.c @@ -197,7 +197,7 @@ int m48t37y_set_time(unsigned long sec) return 0; } -void momenco_timer_setup(struct irqaction *irq) +void __init plat_timer_setup(struct irqaction *irq) { setup_irq(7, irq); /* Timer interrupt, unmask status IM7 */ } @@ -211,7 +211,6 @@ void momenco_time_init(void) * the Rm7900 and the Rm7065C */ mips_hpt_frequency = cpu_clock / 2; - board_timer_setup = momenco_timer_setup; rtc_mips_get_time = m48t37y_get_time; rtc_mips_set_time = m48t37y_set_time; |