rtc: imx-sc: use rtc_time64_to_tm

The imx-sc driver properly sets range_max, use rtc_time64_to_tm() instead
of the deprecated rtc_time_to_tm()

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
Alexandre Belloni 2019-03-03 22:12:38 +01:00
parent 51f896ffd1
commit 30adde6b18
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ static int imx_sc_rtc_read_time(struct device *dev, struct rtc_time *tm)
return ret;
}
rtc_time_to_tm(msg.time, tm);
rtc_time64_to_tm(msg.time, tm);
return 0;
}