Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

rtc: ep93xx: switch to rtc_time64_to_tm

Call the 64bit version of rtc_time_to_tm now that the range is enforced by
the core.

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

+1 -1
+1 -1
drivers/rtc/rtc-ep93xx.c
··· 59 59 60 60 time = readl(ep93xx_rtc->mmio_base + EP93XX_RTC_DATA); 61 61 62 - rtc_time_to_tm(time, tm); 62 + rtc_time64_to_tm(time, tm); 63 63 return 0; 64 64 } 65 65