diff options
author | Robert Moore <Robert.Moore@intel.com> | 2010-04-08 14:59:22 -0700 |
---|---|---|
committer | Robert Moore <Robert.Moore@intel.com> | 2010-04-08 14:59:22 -0700 |
commit | d764104bffb933d1ba436e87de5c050a30a5e9b1 (patch) | |
tree | 302bc749bcd4b1655fc6b4cc233eaf2623f09d01 /source/include/aclocal.h | |
parent | 8cf3f0b4b966d82611551169da42ab957bf3ec0c (diff) | |
download | acpica-d764104bffb933d1ba436e87de5c050a30a5e9b1.tar.gz |
Add GPE support for dynamically loaded ACPI tables.
For all GPEs, including FADT-based and GPE Block Devices, execute
any _PRW methods in the new table, and process any _Lxx/_Exx GPE
methods in the new table. Any runtime GPE that is referred to by
an _Lxx/_Exx method in the new table is immediately enabled.
ACPICA BZ 833. Lin Ming, Bob Moore.
Diffstat (limited to 'source/include/aclocal.h')
-rw-r--r-- | source/include/aclocal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source/include/aclocal.h b/source/include/aclocal.h index 9bf9eccce..1deced011 100644 --- a/source/include/aclocal.h +++ b/source/include/aclocal.h @@ -612,6 +612,10 @@ typedef struct acpi_gpe_walk_info { ACPI_NAMESPACE_NODE *GpeDevice; ACPI_GPE_BLOCK_INFO *GpeBlock; + UINT16 Count; + ACPI_OWNER_ID OwnerId; + BOOLEAN EnableThisGpe; + BOOLEAN ExecuteByOwnerId; } ACPI_GPE_WALK_INFO; |