aboutsummaryrefslogtreecommitdiff
path: root/sys/isa/atrtc.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1998-05-28 09:30:28 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1998-05-28 09:30:28 +0000
commite796e00de3aa249ff8a138d12c2c89177fd61260 (patch)
treed795d22573ff16d9fee27007d4f7a8f5a2bf443b /sys/isa/atrtc.c
parent4a71a2e71bdc472ecfe5390957894b3e6427fc93 (diff)
Notes
Diffstat (limited to 'sys/isa/atrtc.c')
-rw-r--r--sys/isa/atrtc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/isa/atrtc.c b/sys/isa/atrtc.c
index 315e61aec5a9..671a3be268c0 100644
--- a/sys/isa/atrtc.c
+++ b/sys/isa/atrtc.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)clock.c 7.2 (Berkeley) 5/12/91
- * $Id: clock.c,v 1.119 1998/04/05 01:04:48 tegge Exp $
+ * $Id: clock.c,v 1.120 1998/05/19 18:48:30 phk Exp $
*/
/*
@@ -1129,7 +1129,7 @@ sysctl_machdep_tsc_freq SYSCTL_HANDLER_ARGS
SYSCTL_PROC(_machdep, OID_AUTO, tsc_freq, CTLTYPE_INT | CTLFLAG_RW,
0, sizeof(u_int), sysctl_machdep_tsc_freq, "I", "");
-static u_int
+static unsigned
i8254_get_timecount(void)
{
u_int count;
@@ -1158,7 +1158,7 @@ i8254_get_timecount(void)
return (count);
}
-static u_int
+static unsigned
tsc_get_timecount(void)
{
return (rdtsc());