Commit 2852ccae authored by Stephen Boyd's avatar Stephen Boyd Committed by David Brown

msm: timer: Tighten #ifdef for local timer support

It is more correct to only define the local timer support code
when CONFIG_LOCAL_TIMERS=y.
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
Signed-off-by: default avatarDavid Brown <davidb@codeaurora.org>
parent 1ea6b8f4
...@@ -279,7 +279,7 @@ static void __init msm_timer_init(void) ...@@ -279,7 +279,7 @@ static void __init msm_timer_init(void)
} }
} }
#ifdef CONFIG_SMP #ifdef CONFIG_LOCAL_TIMERS
int __cpuinit local_timer_setup(struct clock_event_device *evt) int __cpuinit local_timer_setup(struct clock_event_device *evt)
{ {
static bool local_timer_inited; static bool local_timer_inited;
...@@ -321,8 +321,7 @@ void local_timer_stop(struct clock_event_device *evt) ...@@ -321,8 +321,7 @@ void local_timer_stop(struct clock_event_device *evt)
evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt); evt->set_mode(CLOCK_EVT_MODE_UNUSED, evt);
disable_percpu_irq(evt->irq); disable_percpu_irq(evt->irq);
} }
#endif /* CONFIG_LOCAL_TIMERS */
#endif
struct sys_timer msm_timer = { struct sys_timer msm_timer = {
.init = msm_timer_init .init = msm_timer_init
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment