diff options
author | John Stultz <john.stultz@linaro.org> | 2011-02-03 02:53:42 +0100 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2011-02-03 22:02:50 +0100 |
commit | d8ce1481ee8770ef2314eb7984a2228dbf64ad06 (patch) | |
tree | 8ca2515b1b824857d89c18d69e2828ae826f506f /drivers/rtc/rtc-rp5c01.c | |
parent | RTC: Convert rtc drivers to use the alarm_irq_enable method (diff) | |
download | linux-d8ce1481ee8770ef2314eb7984a2228dbf64ad06.tar.xz linux-d8ce1481ee8770ef2314eb7984a2228dbf64ad06.zip |
RTC: Fix minor compile warning
Two rtc drivers return values from void functions. This patch
fixes that.
CC: Thomas Gleixner <tglx@linutronix.de>
CC: Alessandro Zummo <a.zummo@towertech.it>
CC: Marcelo Roberto Jimenez <mroberto@cpti.cetuc.puc-rio.br>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'drivers/rtc/rtc-rp5c01.c')
-rw-r--r-- | drivers/rtc/rtc-rp5c01.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-rp5c01.c b/drivers/rtc/rtc-rp5c01.c index 36eb66184461..694da39b6dd2 100644 --- a/drivers/rtc/rtc-rp5c01.c +++ b/drivers/rtc/rtc-rp5c01.c @@ -76,7 +76,7 @@ static inline unsigned int rp5c01_read(struct rp5c01_priv *priv, static inline void rp5c01_write(struct rp5c01_priv *priv, unsigned int val, unsigned int reg) { - return __raw_writel(val, &priv->regs[reg]); + __raw_writel(val, &priv->regs[reg]); } static void rp5c01_lock(struct rp5c01_priv *priv) |