projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b485fe5
)
rtc/max6900: use rtc_valid_tm() to check returning tm
author
Wan ZongShun
<
[email protected]
>
Wed, 11 Aug 2010 01:02:16 +0000
(18:02 -0700)
committer
Linus Torvalds
<
[email protected]
>
Wed, 11 Aug 2010 15:59:07 +0000
(08:59 -0700)
Use rtc_valid_tm() to check returning tm for max6900, it can avoid
returning wrong tm value.
Signed-off-by: Wan ZongShun <
[email protected]
>
Acked-by: Dale Farnsworth <
[email protected]
>
Cc: Alessandro Zummo <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/rtc/rtc-max6900.c
patch
|
blob
|
history
diff --git
a/drivers/rtc/rtc-max6900.c
b/drivers/rtc/rtc-max6900.c
index a4f6665ab3c56760bbf72f63e05649d69dda3a03..486142c2637a05da66da8e1542c9545cb50c4d41 100644
(file)
--- a/
drivers/rtc/rtc-max6900.c
+++ b/
drivers/rtc/rtc-max6900.c
@@
-159,7
+159,7
@@
static int max6900_i2c_read_time(struct i2c_client *client, struct rtc_time *tm)
bcd2bin(regs[MAX6900_REG_CENTURY]) * 100 - 1900;
tm->tm_wday = bcd2bin(regs[MAX6900_REG_DW]);
- return
0
;
+ return
rtc_valid_tm(tm)
;
}
static int max6900_i2c_clear_write_protect(struct i2c_client *client)