diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2014-01-25 00:26:15 +0530 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2014-03-26 14:31:29 +0530 |
commit | 35571f4bdcae4bf2262fa0c94f56594dd0457f5a (patch) | |
tree | aba76459aa8b62473d1e46239755a4a4248ae63f | |
parent | d345ea2892ae7a2b70f84cf881c20731e43e4993 (diff) | |
download | linux-35571f4bdcae4bf2262fa0c94f56594dd0457f5a.tar.gz linux-35571f4bdcae4bf2262fa0c94f56594dd0457f5a.tar.bz2 linux-35571f4bdcae4bf2262fa0c94f56594dd0457f5a.zip |
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 = { /* * Setup the local event timer for @cpu - * N.B. weak so that some exotic ARC SoCs can completely override it */ -void __weak arc_local_timer_setup(unsigned int cpu) +void arc_local_timer_setup(unsigned int cpu) { struct clock_event_device *clk = &per_cpu(arc_clockevent_device, cpu); |