timer-sp.h 478 B

123456789101112131415
  1. void __sp804_clocksource_and_sched_clock_init(void __iomem *,
  2. const char *, int);
  3. static inline void sp804_clocksource_init(void __iomem *base, const char *name)
  4. {
  5. __sp804_clocksource_and_sched_clock_init(base, name, 0);
  6. }
  7. static inline void sp804_clocksource_and_sched_clock_init(void __iomem *base,
  8. const char *name)
  9. {
  10. __sp804_clocksource_and_sched_clock_init(base, name, 1);
  11. }
  12. void sp804_clockevents_init(void __iomem *, unsigned int, const char *);