aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/rtc/rtc-hym8563.c
diff options
context:
space:
mode:
authorAlexander Kochetkov <al.kochet@gmail.com>2016-03-06 12:43:57 +0300
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2016-03-14 17:08:38 +0100
commitd5861262210067fc01b2fb4f7af2fd85a3453f15 (patch)
tree2061bb01a8eef2b3f5b9c9adb4b74df8b1c1c45d /drivers/rtc/rtc-hym8563.c
parentrtc: ds3232: use rtc->ops_lock to protect alarm operations (diff)
downloadlinux-dev-d5861262210067fc01b2fb4f7af2fd85a3453f15.tar.xz
linux-dev-d5861262210067fc01b2fb4f7af2fd85a3453f15.zip
rtc: hym8563: fix invalid year calculation
Year field must be in BCD format, according to hym8563 datasheet. Due to the bug year 2016 became 2010. Fixes: dcaf03849352 ("rtc: add hym8563 rtc-driver") Signed-off-by: Alexander Kochetkov <al.kochet@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Diffstat (limited to 'drivers/rtc/rtc-hym8563.c')
-rw-r--r--drivers/rtc/rtc-hym8563.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rtc/rtc-hym8563.c b/drivers/rtc/rtc-hym8563.c
index 097325d96db5..b1b4746a0eab 100644
--- a/drivers/rtc/rtc-hym8563.c
+++ b/drivers/rtc/rtc-hym8563.c
@@ -144,7 +144,7 @@ static int hym8563_rtc_set_time(struct device *dev, struct rtc_time *tm)
* it does not seem to carry it over a subsequent write/read.
* So we'll limit ourself to 100 years, starting at 2000 for now.
*/
- buf[6] = tm->tm_year - 100;
+ buf[6] = bin2bcd(tm->tm_year - 100);
/*
* CTL1 only contains TEST-mode bits apart from stop,