drivers/rtc/rtc-max8925.c: fix max8925_rtc_read_alarm() return value error
authorKevin Liu <[email protected]>
Fri, 23 Mar 2012 22:02:35 +0000 (15:02 -0700)
committerLinus Torvalds <[email protected]>
Fri, 23 Mar 2012 23:58:39 +0000 (16:58 -0700)
max8925_rtc_read_alarm should always return 0 with success

Signed-off-by: Kevin Liu <[email protected]>
Signed-off-by: Haojian Zhuang <[email protected]>
Cc: Alessandro Zummo <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/rtc/rtc-max8925.c

index 2d71943bc436ad9719d364d99361dd62f92268eb..ff6b9a2cb8e3db37ef02821eba86135c224891f6 100644 (file)
@@ -204,6 +204,7 @@ static int max8925_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
                alrm->pending = 1;
        else
                alrm->pending = 0;
+       return 0;
 out:
        return ret;
 }