summaryrefslogtreecommitdiffstats
path: root/sys/isa/atrtc.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/isa/atrtc.c')
-rw-r--r--sys/isa/atrtc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/isa/atrtc.c b/sys/isa/atrtc.c
index 75511f4..64ef3b2 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.133 1999/05/09 23:32:29 peter Exp $
+ * $Id: clock.c,v 1.134 1999/05/28 14:08:59 bde Exp $
*/
/*
@@ -139,6 +139,7 @@ u_int stat_imask = SWI_CLOCK_MASK;
u_int timer_freq = TIMER_FREQ;
int timer0_max_count;
u_int tsc_freq;
+int tsc_is_broken;
int wall_cmos_clock; /* wall CMOS clock assumed if != 0 */
static int beeping = 0;
@@ -793,7 +794,7 @@ startrtclock()
return;
#endif /* NAPM > 0 */
- if (tsc_present && tsc_freq != 0) {
+ if (tsc_present && tsc_freq != 0 && !tsc_is_broken) {
tsc_timecounter.tc_frequency = tsc_freq;
init_timecounter(&tsc_timecounter);
}
OpenPOWER on IntegriCloud