summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/i386/isa/clock.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/arch/i386/isa/clock.c b/sys/arch/i386/isa/clock.c
index 571033ee4a5..1bf94f2955f 100644
--- a/sys/arch/i386/isa/clock.c
+++ b/sys/arch/i386/isa/clock.c
@@ -171,6 +171,8 @@ startrtclock()
NVRAM_DIAG_BITS);
}
+#ifndef _STANDALONE
+
int
clockintr(arg)
void *arg;
@@ -195,6 +197,7 @@ rtcintr(arg)
}
return 0;
}
+#endif /* _STANDALONE */
int
gettick()
@@ -275,6 +278,8 @@ delay(n)
}
}
+#ifndef _STANDALONE
+
static int beeping;
void
@@ -314,6 +319,7 @@ sysbeep(pitch, period)
beeping = 1;
timeout(sysbeepstop, 0, period);
}
+#endif /* _STANDALONE */
unsigned int delaycount; /* calibrated loop variable (1 millisecond) */
@@ -340,6 +346,8 @@ findcpuspeed()
delaycount = (FIRST_GUESS * TIMER_DIV(1000)) / (0xffff-remainder);
}
+#ifndef _STANDALONE
+
#ifdef I586_CPU
void
calibrate_cyclecounter()
@@ -566,3 +574,4 @@ setstatclockrate(arg)
else
mc146818_write(NULL, MC_REGA, MC_BASE_32_KHz | MC_RATE_1024_Hz);
}
+#endif /* _STANDALONE */