diff options
author | Johannes Weiner <hannes@cmpxchg.org> | 2009-03-04 21:39:12 +0100 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2009-04-02 23:45:07 -0700 |
commit | 4476c96769ec083c53fbdbd37b538105deb65aa2 (patch) | |
tree | ae29b4d46fb63aab25a22da8eb6d4ab992f5b1e6 /arch/xtensa/kernel/platform.c | |
parent | 90be8c16950e28aee7cad422272805dcefa06167 (diff) | |
download | talos-obmc-linux-4476c96769ec083c53fbdbd37b538105deb65aa2.tar.gz talos-obmc-linux-4476c96769ec083c53fbdbd37b538105deb65aa2.zip |
xtensa: remove platform rtc hooks
platform_get/set_rtc_time() is not implemented by any of the supported
xtensa platforms. Remove the facility completely.
The initial seconds for xtime come from read_persistent_clock() which
returns just 0 in the generic implementation. Platforms that sport a
persistent clock can implement this function.
This is needed to implement the ccount as a clock source.
Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
Signed-off-by: Chris Zankel <chris@zankel.net>
Diffstat (limited to 'arch/xtensa/kernel/platform.c')
-rw-r--r-- | arch/xtensa/kernel/platform.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/xtensa/kernel/platform.c b/arch/xtensa/kernel/platform.c index 69675f216062..1b91a97f1d84 100644 --- a/arch/xtensa/kernel/platform.c +++ b/arch/xtensa/kernel/platform.c @@ -36,8 +36,6 @@ _F(void, power_off, (void), { while(1); }); _F(void, idle, (void), { __asm__ __volatile__ ("waiti 0" ::: "memory"); }); _F(void, heartbeat, (void), { }); _F(int, pcibios_fixup, (void), { return 0; }); -_F(int, get_rtc_time, (time_t* t), { return 0; }); -_F(int, set_rtc_time, (time_t t), { return 0; }); #ifdef CONFIG_XTENSA_CALIBRATE_CCOUNT _F(void, calibrate_ccount, (void), |