diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-08 08:18:25 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-03-08 08:18:25 +0000 |
commit | 44577aef66445f110ccc679a98460583473df089 (patch) | |
tree | 6784716883938f14e9af207aa8f848712d5531bb /sys | |
parent | b9090b32b151b4c468b823b982594e83a0921fe9 (diff) |
unbreak GENERIC.MP; from gklok
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 79edd4e2a7a..75a93cd7c35 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.342 2006/03/08 03:33:21 uwe Exp $ */ +/* $OpenBSD: machdep.c,v 1.343 2006/03/08 08:18:24 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -1441,6 +1441,7 @@ amd_family6_setup(struct cpu_info *ci) } printf("\n"); +#if !defined(MULTIPROCESSOR) if (regs[3] & 0x06) { switch(ci->ci_signature & 0xF00) { case 0x600: @@ -1451,6 +1452,7 @@ amd_family6_setup(struct cpu_info *ci) break; } } +#endif } #endif #endif |