diff options
| author | Kevin Liu <kliu5@marvell.com> | 2012-03-23 18:02:35 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-23 19:58:39 -0400 |
| commit | 0cf30bdd919685b201f715ea347dd96d590942e8 (patch) | |
| tree | 24874c977ee5af2de3cf49362456cdd806e1531a /drivers | |
| parent | aa19689bfaaa26f2d85588a8774e194de5e7be54 (diff) | |
drivers/rtc/rtc-max8925.c: fix max8925_rtc_read_alarm() return value error
max8925_rtc_read_alarm should always return 0 with success
Signed-off-by: Kevin Liu <kliu5@marvell.com>
Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/rtc/rtc-max8925.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/rtc/rtc-max8925.c b/drivers/rtc/rtc-max8925.c index 2d71943bc436..ff6b9a2cb8e3 100644 --- a/drivers/rtc/rtc-max8925.c +++ b/drivers/rtc/rtc-max8925.c | |||
| @@ -204,6 +204,7 @@ static int max8925_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm) | |||
| 204 | alrm->pending = 1; | 204 | alrm->pending = 1; |
| 205 | else | 205 | else |
| 206 | alrm->pending = 0; | 206 | alrm->pending = 0; |
| 207 | return 0; | ||
| 207 | out: | 208 | out: |
| 208 | return ret; | 209 | return ret; |
| 209 | } | 210 | } |
