diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2014-01-24 13:56:15 -0500 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2014-03-26 05:01:29 -0400 |
commit | 35571f4bdcae4bf2262fa0c94f56594dd0457f5a (patch) | |
tree | aba76459aa8b62473d1e46239755a4a4248ae63f | |
parent | d345ea2892ae7a2b70f84cf881c20731e43e4993 (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.c | 3 |
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 | */ |
227 | void __weak arc_local_timer_setup(unsigned int cpu) | 226 | void 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 | ||