rtc.h 249 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_RTC_H
  3. #define _ASM_RTC_H
  4. void time_init(void);
  5. #define RTC_CAP_4_DIGIT_YEAR (1 << 0)
  6. struct sh_rtc_platform_info {
  7. unsigned long capabilities;
  8. };
  9. #include <cpu/rtc.h>
  10. #endif /* _ASM_RTC_H */