summaryrefslogtreecommitdiffstats
path: root/sys/pc98/cbus/clock.c
diff options
context:
space:
mode:
authorkato <kato@FreeBSD.org>1997-05-28 09:04:26 +0000
committerkato <kato@FreeBSD.org>1997-05-28 09:04:26 +0000
commit071f6fe0fc4ba3df35d62e9e36c0015b11f267a1 (patch)
treef9e0f9e161b9b8a26908d8f48025886123402542 /sys/pc98/cbus/clock.c
parentb15bba4e8b1846f1192a95fa830b6a800ffa8fe5 (diff)
downloadFreeBSD-src-071f6fe0fc4ba3df35d62e9e36c0015b11f267a1.zip
FreeBSD-src-071f6fe0fc4ba3df35d62e9e36c0015b11f267a1.tar.gz
Synchronize with sys/i386/isa/clock.c revision 1.84.
Diffstat (limited to 'sys/pc98/cbus/clock.c')
-rw-r--r--sys/pc98/cbus/clock.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/pc98/cbus/clock.c b/sys/pc98/cbus/clock.c
index 60c92e5..d15fa9d 100644
--- a/sys/pc98/cbus/clock.c
+++ b/sys/pc98/cbus/clock.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)clock.c 7.2 (Berkeley) 5/12/91
- * $Id: clock.c,v 1.20 1997/04/27 13:22:07 kato Exp $
+ * $Id: clock.c,v 1.21 1997/05/05 13:13:47 kato Exp $
*/
/*
@@ -1131,7 +1131,7 @@ resettodr()
#if defined(APIC_IO)
/* from icu.s: */
-extern u_int hwisrs[];
+extern u_int vec[];
extern void vec8254 __P((void));
extern void vecRTC __P((void));
extern u_int ivectors[];
@@ -1202,7 +1202,7 @@ cpu_initclocks()
}
}
- hwisrs[x] = (u_int)vec8254;
+ vec[x] = (u_int)vec8254;
Xintr8254 = (u_int)ivectors[x]; /* XXX might need Xfastintr# */
mask8254 = (1 << x);
register_intr(/* irq */ x, /* XXX id */ 0, /* flags */ 0,
@@ -1242,7 +1242,7 @@ cpu_initclocks()
}
}
- hwisrs[x] = (u_int)vecRTC;
+ vec[x] = (u_int)vecRTC;
XintrRTC = (u_int)ivectors[x]; /* XXX might need Xfastintr# */
maskRTC = (1 << x);
register_intr(/* irq */ x, /* XXX id */ 1, /* flags */ 0,
OpenPOWER on IntegriCloud