summaryrefslogtreecommitdiffstats
path: root/sys/pc98/cbus/pcrtc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pc98/cbus/pcrtc.c')
-rw-r--r--sys/pc98/cbus/pcrtc.c35
1 files changed, 6 insertions, 29 deletions
diff --git a/sys/pc98/cbus/pcrtc.c b/sys/pc98/cbus/pcrtc.c
index 532701c..1d095be 100644
--- a/sys/pc98/cbus/pcrtc.c
+++ b/sys/pc98/cbus/pcrtc.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)clock.c 7.2 (Berkeley) 5/12/91
- * $Id: clock.c,v 1.28 1997/07/20 11:55:52 kato Exp $
+ * $Id: clock.c,v 1.29 1997/07/21 13:12:01 kato Exp $
*/
/*
@@ -1131,33 +1131,6 @@ resettodr()
#endif
}
-#ifdef APIC_IO
-
-/* XXX FIXME: from icu.s: */
-#ifdef NEW_STRATEGY
-
-extern u_int ivectors[];
-extern u_int vec[];
-extern void vec8254 __P((void));
-extern u_int Xintr8254;
-extern u_int mask8254;
-
-#else /** NEW_STRATEGY */
-
-#if !defined(APIC_PIN0_TIMER)
-extern u_int ivectors[];
-extern u_int vec[];
-#endif
-
-#ifndef APIC_PIN0_TIMER
-extern void vec8254 __P((void));
-extern u_int Xintr8254;
-extern u_int mask8254;
-#endif /* APIC_PIN0_TIMER */
-
-#endif /** NEW_STRATEGY */
-
-#endif /* APIC_IO */
/*
* Start both clocks running.
@@ -1255,7 +1228,7 @@ cpu_initclocks()
register_intr(/* irq */ 0, /* XXX id */ 0, /* flags */ 0,
/* XXX */ (inthand2_t *)clkintr, &clk_imask,
/* unit */ 0);
- INTREN(IRQ0);
+ INTREN(APIC_IRQ0);
#else /* APIC_PIN0_TIMER */
/* 8254 is traditionally on ISA IRQ0 */
if ((x = isa_apic_pin(0)) < 0) {
@@ -1332,7 +1305,11 @@ cpu_initclocks()
register_intr(/* irq */ 8, /* XXX id */ 1, /* flags */ 0,
/* XXX */ (inthand2_t *)rtcintr, &stat_imask,
/* unit */ 0);
+#ifdef APIC_IO
+ INTREN(APIC_IRQ8);
+#else
INTREN(IRQ8);
+#endif /* APIC_IO */
writertc(RTC_STATUSB, rtc_statusb);
#endif /* !PC98 */
OpenPOWER on IntegriCloud