aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-shmobile/localtimer.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-shmobile/localtimer.c')
-rw-r--r--arch/arm/mach-shmobile/localtimer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/localtimer.c b/arch/arm/mach-shmobile/localtimer.c
index 2111c28b724e..ad9ccc9900c8 100644
--- a/arch/arm/mach-shmobile/localtimer.c
+++ b/arch/arm/mach-shmobile/localtimer.c
@@ -18,8 +18,9 @@
18/* 18/*
19 * Setup the local clock events for a CPU. 19 * Setup the local clock events for a CPU.
20 */ 20 */
21void __cpuinit local_timer_setup(struct clock_event_device *evt) 21int __cpuinit local_timer_setup(struct clock_event_device *evt)
22{ 22{
23 evt->irq = 29; 23 evt->irq = 29;
24 twd_timer_setup(evt); 24 twd_timer_setup(evt);
25 return 0;
25} 26}