diff options
author | Jordan Hargrave <jordan@cvs.openbsd.org> | 2006-02-20 21:39:07 +0000 |
---|---|---|
committer | Jordan Hargrave <jordan@cvs.openbsd.org> | 2006-02-20 21:39:07 +0000 |
commit | a9ab2f4f192fc9f786a59c954ae93d7115bb8b29 (patch) | |
tree | 1d19c218693194a1774d12b7120c5182861b389e /sys/dev/acpi | |
parent | 0cb66fbd3304632d7c0683812f830ede0cbfdeed (diff) |
Fixed structure size for sleep states (bad grange!)
ok marco@
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/acpivar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpivar.h b/sys/dev/acpi/acpivar.h index 1e1c37789b9..ccad337e833 100644 --- a/sys/dev/acpi/acpivar.h +++ b/sys/dev/acpi/acpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivar.h,v 1.17 2006/02/19 21:32:30 jordan Exp $ */ +/* $OpenBSD: acpivar.h,v 1.18 2006/02/20 21:39:06 jordan Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -134,7 +134,7 @@ struct acpi_softc { struct { int slp_typa; int slp_typb; - } sc_sleeptype[5]; + } sc_sleeptype[6]; struct { int gpe_type; |