Commit 4d487d7e authored by Kukjin Kim's avatar Kukjin Kim

ARM: EXYNOS4: Fix return type of local_timer_setup()

According to commmit af90f10d ("ARM: 6759/1: smp: Select
local timers vs broadcast timer support"), the return type
of local_timer_setup() should be int instead of void.
Reported-by: default avatarChanghwan Youn <chaos.youn@samsung.com>
Signed-off-by: default avatarKukjin Kim <kgene.kim@samsung.com>
parent 6861a197
...@@ -389,9 +389,11 @@ static void exynos4_mct_tick_init(struct clock_event_device *evt) ...@@ -389,9 +389,11 @@ static void exynos4_mct_tick_init(struct clock_event_device *evt)
} }
/* Setup the local clock events for a CPU */ /* Setup the local clock events for a CPU */
void __cpuinit local_timer_setup(struct clock_event_device *evt) int __cpuinit local_timer_setup(struct clock_event_device *evt)
{ {
exynos4_mct_tick_init(evt); exynos4_mct_tick_init(evt);
return 0;
} }
int local_timer_ack(void) int local_timer_ack(void)
......
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