Commit a682a241 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Fix genrtc compilation.

Signed-off-by: default avatarRalf Roesch <ralf.roesch@rw-gmbh.de>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 193dd2ce
...@@ -32,7 +32,7 @@ static inline unsigned int get_rtc_time(struct rtc_time *time) ...@@ -32,7 +32,7 @@ static inline unsigned int get_rtc_time(struct rtc_time *time)
{ {
unsigned long nowtime; unsigned long nowtime;
nowtime = rtc_get_time(); nowtime = rtc_mips_get_time();
to_tm(nowtime, time); to_tm(nowtime, time);
time->tm_year -= 1900; time->tm_year -= 1900;
...@@ -47,7 +47,7 @@ static inline int set_rtc_time(struct rtc_time *time) ...@@ -47,7 +47,7 @@ static inline int set_rtc_time(struct rtc_time *time)
nowtime = mktime(time->tm_year+1900, time->tm_mon+1, nowtime = mktime(time->tm_year+1900, time->tm_mon+1,
time->tm_mday, time->tm_hour, time->tm_min, time->tm_mday, time->tm_hour, time->tm_min,
time->tm_sec); time->tm_sec);
ret = rtc_set_time(nowtime); ret = rtc_mips_set_time(nowtime);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment