]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
rtc-isl12022: properly handle military hour format
authorRoman Fietze <roman.fietze@telemotive.de>
Wed, 11 Aug 2010 01:02:21 +0000 (18:02 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 11 Aug 2010 15:59:08 +0000 (08:59 -0700)
Mask out PM flag when reading the hour, always set MIL bit when
writing the hour.

Signed-off-by: Roman Fietze <roman.fietze@telemotive.de>
Acked-by: Wan ZongShun <mcuos.com@gmail.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/rtc/rtc-isl12022.c

index 4a8c9dd12a7f3b06ce3e8c15e4b63e2d0e494ccc..ddbc797ea6cd68f370301e165294760c24b60c07 100644 (file)
@@ -208,7 +208,7 @@ static int isl12022_set_datetime(struct i2c_client *client, struct rtc_time *tm)
        /* hours, minutes and seconds */
        buf[ISL12022_REG_SC] = bin2bcd(tm->tm_sec);
        buf[ISL12022_REG_MN] = bin2bcd(tm->tm_min);
-       buf[ISL12022_REG_HR] = bin2bcd(tm->tm_hour);
+       buf[ISL12022_REG_HR] = bin2bcd(tm->tm_hour) | ISL12022_HR_MIL;
 
        buf[ISL12022_REG_DT] = bin2bcd(tm->tm_mday);