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: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
95fbfa14b4
commit
7e83f03fad
|
@ -193,7 +193,7 @@ static int mxc_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
|
||||||
if (ret)
|
if (ret)
|
||||||
return 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);
|
alrm->pending = !!(readl(ioaddr + SRTC_LPSR) & SRTC_LPSR_ALP);
|
||||||
return mxc_rtc_unlock(pdata);
|
return mxc_rtc_unlock(pdata);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue