rtc.h 226 B

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