do_timer.h 379 字节
Newer Older
L
Linus Torvalds 已提交
1
/* defines for inline arch setup functions */
2 3
#include <linux/clockchips.h>

L
Linus Torvalds 已提交
4
#include <asm/voyager.h>
5
#include <asm/i8253.h>
L
Linus Torvalds 已提交
6

7 8 9 10 11
/**
 * do_timer_interrupt_hook - hook into timer tick
 *
 * Call the pit clock event handler. see asm/i8253.h
 **/
12
static inline void do_timer_interrupt_hook(void)
L
Linus Torvalds 已提交
13
{
C
Chris Wright 已提交
14
	global_clock_event->event_handler(global_clock_event);
15
	voyager_timer_interrupt();
L
Linus Torvalds 已提交
16 17
}