vgabios: Unify code to generate the vbe mode list.
[seabios.git] / src / clock.c
index 6d46501dac054cf87781c16c7964b3e6892fbb91..fcdc698bb15b8c9a0cad8a950312fa1b3b35e965 100644 (file)
@@ -211,10 +211,9 @@ timer_setup(void)
     u32 ticks = (hours * 60 + minutes) * 60 + seconds;
     ticks = ((u64)ticks * PIT_TICK_RATE) / PIT_TICK_INTERVAL;
     SET_BDA(timer_counter, ticks);
-    SET_BDA(timer_rollover, 0);
 
-    enable_hwirq(0, entry_08);
-    enable_hwirq(8, entry_70);
+    enable_hwirq(0, FUNC16(entry_08));
+    enable_hwirq(8, FUNC16(entry_70));
 }