[PATCH 2/3] rtc:rtc-rs5c313.c : rtc_time value are fixed.

From: kogiidena
Date: Wed May 09 2007 - 08:00:39 EST


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

Signed-off-by: kogiidena <kogiidena@xxxxxxxxxxxxxxx>
---
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 majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/