summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Kleine-König <uwe@kleine-koenig.org>2016-07-11 04:05:28 -0400
committerAlexandre Belloni <alexandre.belloni@free-electrons.com>2016-07-19 12:18:06 -0400
commitbb9dbb01bef96f058f55b984e43a33894c624065 (patch)
treee5c82b6c13afc579a67b32c1517c1524e20c7cf8
parentd2c92705c54c9c24f2b8be57b968ad21a30412e5 (diff)
rtc: hym8563: in .read_alarm set .tm_sec to 0 to signal minute accuracy
Set .tm_sec to 0 instead of -1 to signal minute accuracy. Signed-off-by: Uwe Kleine-König <uwe@kleine-koenig.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
-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 795a3f517cd0..e5ad527cb75e 100644
--- a/drivers/rtc/rtc-hym8563.c
+++ b/drivers/rtc/rtc-hym8563.c
@@ -198,7 +198,7 @@ static int hym8563_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alm)
198 return ret; 198 return ret;
199 199
200 /* The alarm only has a minute accuracy */ 200 /* The alarm only has a minute accuracy */
201 alm_tm->tm_sec = -1; 201 alm_tm->tm_sec = 0;
202 202
203 alm_tm->tm_min = (buf[0] & HYM8563_ALM_BIT_DISABLE) ? 203 alm_tm->tm_min = (buf[0] & HYM8563_ALM_BIT_DISABLE) ?
204 -1 : 204 -1 :