Commit 326bce07 authored by Alexandre Belloni's avatar Alexandre Belloni
Browse files

rtc: starfire: switch to rtc_time64_to_tm

parent 166b1332
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ static u32 starfire_get_time(void)

static int starfire_read_time(struct device *dev, struct rtc_time *tm)
{
	rtc_time_to_tm(starfire_get_time(), tm);
	rtc_time64_to_tm(starfire_get_time(), tm);
	return 0;
}