The following patch is a patch that corrects an initial value of suruct rtc_
time.
please apply.

Signed-off-by: kogiidena <[EMAIL PROTECTED]>
---
diff -urpN OLD/drivers/rtc/rtc-rs5c313.c NEW/drivers/rtc/rtc-rs5c313.c
--- OLD/drivers/rtc/rtc-rs5c313.c       2007-05-08 19:42:05.000000000 +0900
+++ NEW/drivers/rtc/rtc-rs5c313.c       2007-05-08 19:46:40.000000000 +0900
@@ -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 "





-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to