mc146818rtc.h 298 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef ___ASM_SPARC_MC146818RTC_H
  3. #define ___ASM_SPARC_MC146818RTC_H
  4. #include <linux/spinlock.h>
  5. extern spinlock_t rtc_lock;
  6. #if defined(__sparc__) && defined(__arch64__)
  7. #include <asm/mc146818rtc_64.h>
  8. #else
  9. #include <asm/mc146818rtc_32.h>
  10. #endif
  11. #endif