From: Thomas Gleixner Date: Mon, 28 Mar 2011 09:25:40 +0000 (+0200) Subject: arm: footbridge: Make cksrc_dc21285_disable() void X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=f2e0bf2181e4117fa7319be2c9249df968ad9096;p=linux-beck.git arm: footbridge: Make cksrc_dc21285_disable() void This clocksource function needs to be void. Signed-off-by: Thomas Gleixner --- 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) return 0; } -static int cksrc_dc21285_disable(struct clocksource *cs) +static void cksrc_dc21285_disable(struct clocksource *cs) { *CSR_TIMER2_CNTL = 0; }