diff options
author | 2004-06-09 16:01:48 +0000 | |
---|---|---|
committer | 2004-06-09 16:01:48 +0000 | |
commit | 4b1de099e4eb03a561ca74cfaa422567ca3ea079 (patch) | |
tree | 10ad35587f4252589df4472eca8d6e241dc0b191 | |
parent | sync (diff) | |
download | wireguard-openbsd-4b1de099e4eb03a561ca74cfaa422567ca3ea079.tar.xz wireguard-openbsd-4b1de099e4eb03a561ca74cfaa422567ca3ea079.zip |
we trust the calibrated pentium_mhz more, so don't overwrite it unless
we know the cpu speed has changed. fixes pr3814 from mark pecaut.
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index e1e30a21df0..07ac282f32d 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.295 2004/06/06 17:34:37 grange Exp $ */ +/* $OpenBSD: machdep.c,v 1.296 2004/06/09 16:01:48 tedu Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -1392,7 +1392,6 @@ intel686_cpu_setup(const char *cpu_device, int model, int step) #if !defined(SMALL_KERNEL) && defined(I686_CPU) p3_step = step; update_cpuspeed = p3_update_cpuspeed; - update_cpuspeed(); #endif } @@ -1404,7 +1403,6 @@ intel686_p4_cpu_setup(const char *cpu_device, int model, int step) #if !defined(SMALL_KERNEL) && defined(I686_CPU) p4_model = model; update_cpuspeed = p4_update_cpuspeed; - update_cpuspeed(); #endif } |