rtc: omap: switch to rtc_time64_to_tm/rtc_tm_to_time64
Call the 64bit versions of rtc_time_to_tm now that the range is enforced by the core. Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
This commit is contained in:
parent
72dd89c0bc
commit
28c6852e47
|
@ -433,8 +433,8 @@ again:
|
||||||
omap_rtc_read_time_raw(rtc, &tm);
|
omap_rtc_read_time_raw(rtc, &tm);
|
||||||
seconds = tm.tm_sec;
|
seconds = tm.tm_sec;
|
||||||
bcd2tm(&tm);
|
bcd2tm(&tm);
|
||||||
rtc_tm_to_time(&tm, &now);
|
now = rtc_tm_to_time64(&tm);
|
||||||
rtc_time_to_tm(now + 1, &tm);
|
rtc_time64_to_tm(now + 1, &tm);
|
||||||
|
|
||||||
tm2bcd(&tm);
|
tm2bcd(&tm);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue