[<prev] [next>] [day] [month] [year] [list]
Message-ID: <1657.192.168.1.10.1178711992.squirrel@eggplant.ddo.jp>
Date: Wed, 9 May 2007 20:59:52 +0900 (JST)
From: "kogiidena" <kogiidena@...plant.ddo.jp>
To: linux-kernel@...r.kernel.org
Subject: [PATCH 2/3] rtc:rtc-rs5c313.c : rtc_time value are fixed.
The following patch is a patch that corrects an initial value of suruct rtc_
time.
please apply.
Signed-off-by: kogiidena <kogiidena@...plant.ddo.jp>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists