| To: | linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH] rtc.h: fixes to make genrtc.c compilable |
| From: | Ralf Rösch <ralf.roesch@rw-gmbh.de> |
| Date: | Tue, 28 Mar 2006 17:12:50 +0200 |
| In-reply-to: | <4427A31F.9080801@ru.mvista.com> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <20060327074352.GC4781@dusktilldawn.nl> <4427A31F.9080801@ru.mvista.com> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | Thunderbird 1.5 (Windows/20051201) |
!please ignore attached patch from mail before!
patch below makes genrtc.c compilable again
--
Ralf Roesch
diff --git a/include/asm-mips/rtc.h b/include/asm-mips/rtc.h
index a2abc45..82ad401 100644
--- a/include/asm-mips/rtc.h
+++ b/include/asm-mips/rtc.h
@@ -32,7 +32,7 @@ static inline unsigned int get_rtc_time(
{
unsigned long nowtime;
- nowtime = rtc_get_time();
+ nowtime = rtc_mips_get_time();
to_tm(nowtime, time);
time->tm_year -= 1900;
@@ -47,7 +47,7 @@ static inline int set_rtc_time(struct rt
nowtime = mktime(time->tm_year+1900, time->tm_mon+1,
time->tm_mday, time->tm_hour, time->tm_min,
time->tm_sec);
- ret = rtc_set_time(nowtime);
+ ret = rtc_mips_set_time(nowtime);
return ret;
}
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] rtc.h: fixes to make genrtc.c compilable, Ralf Rösch |
|---|---|
| Next by Date: | Re: [PATCH] rtc.h: fixes to make genrtc.c compilable, Sergei Shtylylov |
| Previous by Thread: | [PATCH] rtc.h: fixes to make genrtc.c compilable, Ralf Rösch |
| Next by Thread: | Re: [PATCH] rtc.h: fixes to make genrtc.c compilable, Sergei Shtylylov |
| Indexes: | [Date] [Thread] [Top] [All Lists] |