mc146818rtc.h 259 B

12345678910111213
  1. #ifndef ___ASM_SPARC_MC146818RTC_H
  2. #define ___ASM_SPARC_MC146818RTC_H
  3. #include <linux/spinlock.h>
  4. extern spinlock_t rtc_lock;
  5. #if defined(__sparc__) && defined(__arch64__)
  6. #include <asm/mc146818rtc_64.h>
  7. #else
  8. #include <asm/mc146818rtc_32.h>
  9. #endif
  10. #endif