summaryrefslogtreecommitdiffstats
path: root/sys/pc98/cbus/pcrtc.c
diff options
context:
space:
mode:
authorkato <kato@FreeBSD.org>1998-09-22 16:12:00 +0000
committerkato <kato@FreeBSD.org>1998-09-22 16:12:00 +0000
commita0a14e4798f18bb571cf208751ef12f331a8500b (patch)
tree7bd5b80490c9964d170bfb8946ef7773182c8023 /sys/pc98/cbus/pcrtc.c
parent9e99a9a30e33496170ed6c87a5fb7e4f42dc3e0d (diff)
downloadFreeBSD-src-a0a14e4798f18bb571cf208751ef12f331a8500b.zip
FreeBSD-src-a0a14e4798f18bb571cf208751ef12f331a8500b.tar.gz
Sync with sys/i386/isa/clock.c revision 1.127.
Diffstat (limited to 'sys/pc98/cbus/pcrtc.c')
-rw-r--r--sys/pc98/cbus/pcrtc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pc98/cbus/pcrtc.c b/sys/pc98/cbus/pcrtc.c
index 0663abe..7b02757 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.59 1998/09/08 09:47:46 kato Exp $
+ * $Id: clock.c,v 1.60 1998/09/20 10:51:57 kato Exp $
*/
/*
@@ -233,7 +233,7 @@ clkintr(struct clockframe frame)
* hardware counter must be read to ensure monotonicity
* despite multiple rollovers and misbehaving hardware.
*/
- disable_intr();
+ (disable_intr)(); /* XXX avoid clock locking */
if (i8254_ticked) {
i8254_get_timecount(NULL);
i8254_ticked = 0;
@@ -241,7 +241,7 @@ clkintr(struct clockframe frame)
i8254_offset += timer0_max_count;
i8254_lastcount = 0;
}
- enable_intr();
+ (enable_intr)(); /* XXX avoid clock locking */
}
timer_func(&frame);
switch (timer0_state) {
OpenPOWER on IntegriCloud