blob: 56e5689863aece4257d00395b66d6fa8ae8a489e [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{
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -080015 pit_interrupt_hook();
Linus Torvalds1da177e2005-04-16 15:20:36 -070016}