The patch titled Subject: drivers/rtc/rtc-max8925.c: fix max8925_rtc_read_alarm() return value error has been added to the -mm tree. Its filename is drivers-rtc-rtc-max8925c-fix-max8925_rtc_read_alarm-return-value-error.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Kevin Liu <kliu5@xxxxxxxxxxx> Subject: 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@xxxxxxxxxxx> Signed-off-by: Haojian Zhuang <haojian.zhuang@xxxxxxxxxxx> Cc: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-max8925.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/rtc/rtc-max8925.c~drivers-rtc-rtc-max8925c-fix-max8925_rtc_read_alarm-return-value-error drivers/rtc/rtc-max8925.c --- a/drivers/rtc/rtc-max8925.c~drivers-rtc-rtc-max8925c-fix-max8925_rtc_read_alarm-return-value-error +++ a/drivers/rtc/rtc-max8925.c @@ -204,6 +204,7 @@ static int max8925_rtc_read_alarm(struct alrm->pending = 1; else alrm->pending = 0; + return 0; out: return ret; } _ Subject: Subject: drivers/rtc/rtc-max8925.c: fix max8925_rtc_read_alarm() return value error Patches currently in -mm which might be from kliu5@xxxxxxxxxxx are drivers-rtc-rtc-max8925c-fix-max8925_rtc_read_alarm-return-value-error.patch drivers-rtc-rtc-max8925c-fix-alarm-enabled-mistake-in-max8925_rtc_read_alarm-max8925_rtc_set_alarm.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html