aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-footbridge
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2011-03-28 05:25:40 -0400
committerThomas Gleixner <tglx@linutronix.de>2011-03-29 08:47:50 -0400
commitf2e0bf2181e4117fa7319be2c9249df968ad9096 (patch)
tree505cfa7e2bf2cbeb10d372b7d85a897754231be7 /arch/arm/mach-footbridge
parent11f2cde1165b56c88701954088437a556ddff07f (diff)
arm: footbridge: Make cksrc_dc21285_disable() void
This clocksource function needs to be void. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/arm/mach-footbridge')
-rw-r--r--arch/arm/mach-footbridge/dc21285-timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-footbridge/dc21285-timer.c b/arch/arm/mach-footbridge/dc21285-timer.c
index a921fe92b858..5f1f9867fc70 100644
--- a/arch/arm/mach-footbridge/dc21285-timer.c
+++ b/arch/arm/mach-footbridge/dc21285-timer.c
@@ -30,7 +30,7 @@ static int cksrc_dc21285_enable(struct clocksource *cs)
30 return 0; 30 return 0;
31} 31}
32 32
33static int cksrc_dc21285_disable(struct clocksource *cs) 33static void cksrc_dc21285_disable(struct clocksource *cs)
34{ 34{
35 *CSR_TIMER2_CNTL = 0; 35 *CSR_TIMER2_CNTL = 0;
36} 36}