diff options
author | Arnd Bergmann <arnd@arndb.de> | 2009-05-17 17:00:05 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@klappe2.(none)> | 2009-06-11 15:02:18 -0400 |
commit | 3aef392822e1a42e80077a332ea2efdfd8a4248a (patch) | |
tree | a7336b2f95562515bb9398ac5417803dce42ab71 /include/asm-generic/rtc.h | |
parent | 5b17e1cd8928ae65932758ce6478ac6d3e9a86b2 (diff) |
asm-generic: make get_rtc_time overridable
Evidently, set_rtc_time is supposed to be overridable
by architectures that define their own version, but
unfortunately, get_rtc_ss would in that case still
use the generic version.
This makes get_rtc_ss call the real set_rtc_time
to let architectures define their own version.
The change should fix the "Extended RTC operation"
on Alpha, which uses the incorrect get_rtc_ss
call. It also allows PowerPC to use the asm-generic/rtc.h
file in the future.
Cc: Richard Henderson <rth@twiddle.net>
Cc: linux-alpha@vger.kernel.org
Cc: Tom Rini <trini@mvista.com>
Cc: rtc-linux@googlegroups.com
Cc: Alessandro Zummo <a.zummo@towertech.it>
Cc: Paul Gortmaker <p_gortmaker@yahoo.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/asm-generic/rtc.h')
-rw-r--r-- | include/asm-generic/rtc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/rtc.h b/include/asm-generic/rtc.h index 763e3b060f43..fa86f240c874 100644 --- a/include/asm-generic/rtc.h +++ b/include/asm-generic/rtc.h | |||
@@ -202,7 +202,7 @@ static inline unsigned int get_rtc_ss(void) | |||
202 | { | 202 | { |
203 | struct rtc_time h; | 203 | struct rtc_time h; |
204 | 204 | ||
205 | __get_rtc_time(&h); | 205 | get_rtc_time(&h); |
206 | return h.tm_sec; | 206 | return h.tm_sec; |
207 | } | 207 | } |
208 | 208 | ||