The patch titled rtc-rs5c313.c: rtc_time value are fixed has been added to the -mm tree. Its filename is rtc-rs5c313c-rtc_time-value-are-fixed.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: rtc-rs5c313.c: rtc_time value are fixed From: "kogiidena" <kogiidena@xxxxxxxxxxxxxxx> Correct an initial value of suruct rtc_ time. Signed-off-by: kogiidena <kogiidena@xxxxxxxxxxxxxxx> Cc: Alessandro Zummo <a.zummo@xxxxxxxxxxxx> Cc: David Brownell <david-b@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/rtc/rtc-rs5c313.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/rtc/rtc-rs5c313.c~rtc-rs5c313c-rtc_time-value-are-fixed drivers/rtc/rtc-rs5c313.c --- a/drivers/rtc/rtc-rs5c313.c~rtc-rs5c313c-rtc_time-value-are-fixed +++ a/drivers/rtc/rtc-rs5c313.c @@ -331,7 +331,8 @@ static void rs5c313_check_xstp_bit(void) memset(&tm, 0, sizeof(struct rtc_time)); tm.tm_mday = 1; - tm.tm_mon = 1; + tm.tm_mon = 1 - 1; + tm.tm_year = 2000 - 1900; rs5c313_rtc_set_time(NULL, &tm); printk(KERN_ERR "RICHO RS5C313: invalid value, resetting to " _ Patches currently in -mm which might be from kogiidena@xxxxxxxxxxxxxxx are origin.patch rtc-rs5c313c-error-and-warning-are-fixed.patch rtc-rs5c313c-rtc_time-value-are-fixed.patch rtcrtc-rs5c313c-add-error-handling-toavoidhardware.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