1
0
Fork 0
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:
Stefan Lankes 2017-07-28 00:10:00 +02:00
parent 456be55a8d
commit 30fef14454

View file

@ -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();