mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
remove obsolete irq handler
This commit is contained in:
parent
c1ff763da3
commit
ac06dec12d
1 changed files with 0 additions and 5 deletions
|
@ -70,10 +70,6 @@ void check_ticks(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
static void wakeup_handler(struct state *s)
|
||||
{
|
||||
}
|
||||
|
||||
/*
|
||||
* Handles the timer. In this case, it's very simple: We
|
||||
* increment the 'timer_ticks' variable every time the
|
||||
|
@ -187,7 +183,6 @@ int timer_init(void)
|
|||
*/
|
||||
irq_install_handler(32, timer_handler);
|
||||
irq_install_handler(123, timer_handler);
|
||||
irq_install_handler(121, wakeup_handler);
|
||||
|
||||
#ifdef DYNAMIC_TICKS
|
||||
boot_tsc = has_rdtscp() ? rdtscp(NULL) : rdtsc();
|
||||
|
|
Loading…
Add table
Reference in a new issue