From: Uwe Kleine-König Date: Mon, 11 Jul 2016 08:05:28 +0000 (+0200) Subject: rtc: hym8563: in .read_alarm set .tm_sec to 0 to signal minute accuracy X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=bb9dbb01bef96f058f55b984e43a33894c624065;p=deliverable%2Flinux.git 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 Signed-off-by: Alexandre Belloni --- 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) return ret; /* The alarm only has a minute accuracy */ - alm_tm->tm_sec = -1; + alm_tm->tm_sec = 0; alm_tm->tm_min = (buf[0] & HYM8563_ALM_BIT_DISABLE) ? -1 :