You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
379 B
18 lines
379 B
20 years ago
|
/* defines for inline arch setup functions */
|
||
18 years ago
|
#include <linux/clockchips.h>
|
||
|
|
||
20 years ago
|
#include <asm/voyager.h>
|
||
18 years ago
|
#include <asm/i8253.h>
|
||
20 years ago
|
|
||
18 years ago
|
/**
|
||
|
* do_timer_interrupt_hook - hook into timer tick
|
||
|
*
|
||
|
* Call the pit clock event handler. see asm/i8253.h
|
||
|
**/
|
||
19 years ago
|
static inline void do_timer_interrupt_hook(void)
|
||
20 years ago
|
{
|
||
18 years ago
|
global_clock_event->event_handler(global_clock_event);
|
||
19 years ago
|
voyager_timer_interrupt();
|
||
20 years ago
|
}
|
||
|
|