1 #ifndef _ASM_RTC_H 2 #define _ASM_RTC_H 3 4 #include <asm/machvec.h> 5 6 #define rtc_gettimeofday sh_mv.mv_rtc_gettimeofday 7 #define rtc_settimeofday sh_mv.mv_rtc_settimeofday 8 9 extern void sh_rtc_gettimeofday(struct timeval *tv); 10 extern int sh_rtc_settimeofday(const struct timeval *tv); 11 12 #endif /* _ASM_RTC_H */ 13