summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
authorTobias Weingartner <weingart@cvs.openbsd.org>1998-01-12 20:54:03 +0000
committerTobias Weingartner <weingart@cvs.openbsd.org>1998-01-12 20:54:03 +0000
commit474ed9c3b472649cd00aa76e60dbfc5dcd5da6ca (patch)
treed6984430e8b75648c0353d3a754a66f195c7a21a /sys/arch/i386
parent7457ca1fa25783fdd0612e3cc9529b1d0b6c962f (diff)
No need for f00f workaround on I686_CPU only
kernel. Thanks to various people for noticing this.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/i386/machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c
index 2af840ebccb..61230873797 100644
--- a/sys/arch/i386/i386/machdep.c
+++ b/sys/arch/i386/i386/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.73 1998/01/09 14:36:42 niklas Exp $ */
+/* $OpenBSD: machdep.c,v 1.74 1998/01/12 20:54:02 weingart Exp $ */
/* $NetBSD: machdep.c,v 1.202 1996/05/18 15:54:59 christos Exp $ */
/*-
@@ -631,7 +631,7 @@ void
intel586_cpu_setup(cpu_device)
const char *cpu_device;
{
-#if defined(I586_CPU) || defined(I686_CPU)
+#if defined(I586_CPU)
fix_f00f();
printf("%s: F00F bug workaround installed\n", cpu_device);
#endif