diff options
author | Shane McDonald <mcdonald.shane@gmail.com> | 2009-04-28 01:50:21 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-05-14 08:50:28 -0400 |
commit | 01caec8396eff7d519e6d85c5a1c860e7d4714e5 (patch) | |
tree | 86cd309507093f9b017333e63c082456db25f200 /arch | |
parent | ed01b3d240b76dc1b93d08833832f9ce51a11f02 (diff) |
MIPS: MSP71xx: Resolve multiple definition of plat_timer_setup
There have been a number of compile problems with the msp71xx configuration
ever since it was included in the linux-mips.org repository. This patch
resolves the "multiple definition of plat_timer_setup" problem, and creates
the required get_c0_compare_int function.
This patch has been compile-tested against the current HEAD.
Signed-off-by: Shane McDonald <mcdonald.shane@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/pmc-sierra/msp71xx/msp_time.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/arch/mips/pmc-sierra/msp71xx/msp_time.c b/arch/mips/pmc-sierra/msp71xx/msp_time.c index 7cfeda5a651b..cca64e15f57f 100644 --- a/arch/mips/pmc-sierra/msp71xx/msp_time.c +++ b/arch/mips/pmc-sierra/msp71xx/msp_time.c | |||
@@ -81,10 +81,7 @@ void __init plat_time_init(void) | |||
81 | mips_hpt_frequency = cpu_rate/2; | 81 | mips_hpt_frequency = cpu_rate/2; |
82 | } | 82 | } |
83 | 83 | ||
84 | void __init plat_timer_setup(struct irqaction *irq) | 84 | unsigned int __init get_c0_compare_int(void) |
85 | { | 85 | { |
86 | #ifdef CONFIG_IRQ_MSP_CIC | 86 | return MSP_INT_VPE0_TIMER; |
87 | /* we are using the vpe0 counter for timer interrupts */ | ||
88 | setup_irq(MSP_INT_VPE0_TIMER, irq); | ||
89 | #endif | ||
90 | } | 87 | } |