diff options
author | Jordan Hargrave <jordan@cvs.openbsd.org> | 2006-06-30 01:09:48 +0000 |
---|---|---|
committer | Jordan Hargrave <jordan@cvs.openbsd.org> | 2006-06-30 01:09:48 +0000 |
commit | ebe8d416e75b4cbceb89cc2f924f2a5c42165e5a (patch) | |
tree | 8d79b980763dcbf6df4cfd57ffdc30386af986dd /sys/dev/acpi/acpivar.h | |
parent | 7d9a8fed4bad8e4c27534848faa648237caafb9d (diff) |
Added offset argument for acpi read/write pmreg routines (new GPE code)
ok marco@
Diffstat (limited to 'sys/dev/acpi/acpivar.h')
-rw-r--r-- | sys/dev/acpi/acpivar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/acpi/acpivar.h b/sys/dev/acpi/acpivar.h index a977de14c17..90ab5755f41 100644 --- a/sys/dev/acpi/acpivar.h +++ b/sys/dev/acpi/acpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivar.h,v 1.23 2006/05/29 00:54:23 canacar Exp $ */ +/* $OpenBSD: acpivar.h,v 1.24 2006/06/30 01:09:47 jordan Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -77,6 +77,8 @@ typedef SIMPLEQ_HEAD(, acpi_q) acpi_qhead_t; #define ACPIREG_PM1_STS 0x0E #define ACPIREG_PM1_EN 0x0F #define ACPIREG_PM1_CNT 0x10 +#define ACPIREG_GPE_STS 0x11 +#define ACPIREG_GPE_EN 0x12 struct acpi_parsestate { |