]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
[PATCH] i2c/m41t00: Do not forget to write year
authorPhilippe De Muyter <phdm@macqel.be>
Sun, 7 Jan 2007 11:09:21 +0000 (12:09 +0100)
committerChris Wright <chrisw@sous-sol.org>
Mon, 5 Feb 2007 16:31:39 +0000 (08:31 -0800)
m41t00.c forgets to set the year field in set_rtc_time; fix that.

Signed-off-by: Philippe De Muyter <phdm@macqel.be>
Acked-by: Mark A. Greer <mgreer@mvista.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
drivers/i2c/chips/m41t00.c

index 2dd0a34d9472e17496dff2692aec74cd5cd3ac61..a14375c638b661237b13fba0bbc2fed8966c295a 100644 (file)
@@ -209,6 +209,7 @@ m41t00_set(void *arg)
        buf[m41t00_chip->hour] = (buf[m41t00_chip->hour] & ~0x3f) | (hour& 0x3f);
        buf[m41t00_chip->day] = (buf[m41t00_chip->day] & ~0x3f) | (day & 0x3f);
        buf[m41t00_chip->mon] = (buf[m41t00_chip->mon] & ~0x1f) | (mon & 0x1f);
+       buf[m41t00_chip->year] = year;
 
        if (i2c_master_send(save_client, wbuf, 9) < 0)
                dev_err(&save_client->dev, "m41t00_set: Write error\n");