aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVineet Gupta <vgupta@synopsys.com>2014-01-24 13:56:15 -0500
committerVineet Gupta <vgupta@synopsys.com>2014-03-26 05:01:29 -0400
commit35571f4bdcae4bf2262fa0c94f56594dd0457f5a (patch)
treeaba76459aa8b62473d1e46239755a4a4248ae63f
parentd345ea2892ae7a2b70f84cf881c20731e43e4993 (diff)
ARC: [clockevent] can't be SoC specific
So no point keeping it weak Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
-rw-r--r--arch/arc/kernel/time.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arc/kernel/time.c b/arch/arc/kernel/time.c
index e5f3a837fb35..a8787bcbbc8e 100644
--- a/arch/arc/kernel/time.c
+++ b/arch/arc/kernel/time.c
@@ -222,9 +222,8 @@ static struct irqaction arc_timer_irq = {
222 222
223/* 223/*
224 * Setup the local event timer for @cpu 224 * Setup the local event timer for @cpu
225 * N.B. weak so that some exotic ARC SoCs can completely override it
226 */ 225 */
227void __weak arc_local_timer_setup(unsigned int cpu) 226void arc_local_timer_setup(unsigned int cpu)
228{ 227{
229 struct clock_event_device *clk = &per_cpu(arc_clockevent_device, cpu); 228 struct clock_event_device *clk = &per_cpu(arc_clockevent_device, cpu);
230 229