diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2006-01-19 18:21:04 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2006-01-19 18:21:04 +0000 |
commit | 2e4638218f93e5d831689bab4325ab3a409e4c8a (patch) | |
tree | e856f72112bc3dfa0709f0b0508305536fad8598 /sys/arch/amd64 | |
parent | 12fe641ea8c8836df2c10b83bf985c7021dcd54d (diff) |
Fix NACPI > 1 (should be >0). Spotted by form@.
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/machdep.c b/sys/arch/amd64/amd64/machdep.c index b0449abc8ea..03cd5ec7455 100644 --- a/sys/arch/amd64/amd64/machdep.c +++ b/sys/arch/amd64/amd64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.44 2006/01/06 10:53:16 grange Exp $ */ +/* $OpenBSD: machdep.c,v 1.45 2006/01/19 18:21:03 grange Exp $ */ /* $NetBSD: machdep.c,v 1.3 2003/05/07 22:58:18 fvdl Exp $ */ /*- @@ -138,7 +138,7 @@ #include "ksyms.h" #include "acpi.h" -#if NACPI > 1 +#if NACPI > 0 #include <dev/acpi/acpivar.h> #endif |