do_timer.h 349 B

12345678910111213141516
  1. /* defines for inline arch setup functions */
  2. #include <linux/clockchips.h>
  3. #include <asm/i8259.h>
  4. #include <asm/i8253.h>
  5. /**
  6. * do_timer_interrupt_hook - hook into timer tick
  7. *
  8. * Call the pit clock event handler. see asm/i8253.h
  9. **/
  10. static inline void do_timer_interrupt_hook(void)
  11. {
  12. global_clock_event->event_handler(global_clock_event);
  13. }