]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
msm: timer: fix missing return value
authorDavid Brown <davidb@codeaurora.org>
Wed, 30 Mar 2011 18:26:57 +0000 (11:26 -0700)
committerDavid Brown <davidb@codeaurora.org>
Thu, 31 Mar 2011 20:15:40 +0000 (13:15 -0700)
Change af90f10d38 "ARM: 6759/1: smp: Select local timers vs broadcast
timer support runtime" missed a return statement, causing a compile
warning:

  arch/arm/mach-msm/timer.c:272: warning: 'return' with no value, in
  function returning non-void

Trivially return 0 for success when running on cpu 0 (to match the
comment and previous behavior).

Signed-off-by: David Brown <davidb@codeaurora.org>
arch/arm/mach-msm/timer.c

index 56f920c55b6aaaaa45737aeeddffadfa1b1a12d2..38b95e949d13b0a87d83a3274b0369e98c8321ed 100644 (file)
@@ -269,7 +269,7 @@ int __cpuinit local_timer_setup(struct clock_event_device *evt)
 
        /* Use existing clock_event for cpu 0 */
        if (!smp_processor_id())
-               return;
+               return 0;
 
        writel(DGT_CLK_CTL_DIV_4, MSM_TMR_BASE + DGT_CLK_CTL);