diff options
author | kato <kato@FreeBSD.org> | 1998-09-22 16:12:00 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1998-09-22 16:12:00 +0000 |
commit | a0a14e4798f18bb571cf208751ef12f331a8500b (patch) | |
tree | 7bd5b80490c9964d170bfb8946ef7773182c8023 | |
parent | 9e99a9a30e33496170ed6c87a5fb7e4f42dc3e0d (diff) | |
download | FreeBSD-src-a0a14e4798f18bb571cf208751ef12f331a8500b.zip FreeBSD-src-a0a14e4798f18bb571cf208751ef12f331a8500b.tar.gz |
Sync with sys/i386/isa/clock.c revision 1.127.
-rw-r--r-- | sys/pc98/cbus/clock.c | 6 | ||||
-rw-r--r-- | sys/pc98/cbus/pcrtc.c | 6 | ||||
-rw-r--r-- | sys/pc98/pc98/clock.c | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/pc98/cbus/clock.c b/sys/pc98/cbus/clock.c index 0663abe..7b02757 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.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) { 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) { diff --git a/sys/pc98/pc98/clock.c b/sys/pc98/pc98/clock.c index 0663abe..7b02757 100644 --- a/sys/pc98/pc98/clock.c +++ b/sys/pc98/pc98/clock.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) { |