Commit 7e83f03f authored by Alexandre Belloni's avatar Alexandre Belloni

rtc: mxc_v2: use rtc_time64_to_tm in mxc_rtc_read_alarm

Use the 64-bit version of rtc_time_to_tm in mxc_rtc_read_alarm
Signed-off-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
parent 95fbfa14
......@@ -193,7 +193,7 @@ static int mxc_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
if (ret)
return ret;
rtc_time_to_tm(readl(ioaddr + SRTC_LPSAR), &alrm->time);
rtc_time64_to_tm(readl(ioaddr + SRTC_LPSAR), &alrm->time);
alrm->pending = !!(readl(ioaddr + SRTC_LPSR) & SRTC_LPSR_ALP);
return mxc_rtc_unlock(pdata);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment