From: Alexandre Belloni Date: Sun, 3 Mar 2019 21:12:38 +0000 (+0100) Subject: rtc: imx-sc: use rtc_time64_to_tm X-Git-Tag: v5.1-rc1~105^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=30adde6b181104249fb6c17b72a9bf12332bc053;p=thirdparty%2Fkernel%2Flinux.git 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 --- diff --git a/drivers/rtc/rtc-imx-sc.c b/drivers/rtc/rtc-imx-sc.c index 60570a278bb0c..19642bfd913ae 100644 --- a/drivers/rtc/rtc-imx-sc.c +++ b/drivers/rtc/rtc-imx-sc.c @@ -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; }