blob: 23ecda0b28a07cd1d55b27375e7e231024c8f2e6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* defines for inline arch setup functions */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08002#include <linux/clockchips.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Ingo Molnar306e4402005-06-30 02:58:55 -07004#include <asm/i8259.h>
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -08005#include <asm/i8253.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7/**
8 * do_timer_interrupt_hook - hook into timer tick
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080010 * Call the pit clock event handler. see asm/i8253.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 **/
12
David Howells7d12e782006-10-05 14:55:46 +010013static inline void do_timer_interrupt_hook(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070014{
Chris Wrightbef9f9d2007-07-21 17:10:08 +020015 global_clock_event->event_handler(global_clock_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016}