diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2016-08-31 21:40:51 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2016-08-31 21:40:51 +0000 |
commit | be99e84498e91a5930864ef7b92b1a7ceb815e44 (patch) | |
tree | 7f5a2883a75b1713bdfe7d36ffa6217bac9187e2 /source/compiler/aslstubs.c | |
parent | 8bc6ab62dbdb3e8b0d2253e0440f6f58ac9afd3d (diff) |
Notes
Diffstat (limited to 'source/compiler/aslstubs.c')
-rw-r--r-- | source/compiler/aslstubs.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/compiler/aslstubs.c b/source/compiler/aslstubs.c index f0fbe035b5869..b88513ffb5241 100644 --- a/source/compiler/aslstubs.c +++ b/source/compiler/aslstubs.c @@ -47,6 +47,7 @@ #include "acevents.h" #include "acinterp.h" #include "acnamesp.h" +#include "acparser.h" #define _COMPONENT ACPI_COMPILER ACPI_MODULE_NAME ("aslstubs") @@ -71,6 +72,13 @@ AcpiNsInitializeObjects ( } ACPI_STATUS +AcpiPsExecuteTable ( + ACPI_EVALUATE_INFO *Info) +{ + return (AE_OK); +} + +ACPI_STATUS AcpiHwReadPort ( ACPI_IO_ADDRESS Address, UINT32 *Value, @@ -156,6 +164,13 @@ AcpiEvDeleteGpeBlock ( return (AE_OK); } +void +AcpiEvUpdateGpes ( + ACPI_OWNER_ID TableOwnerId) +{ + return; +} + ACPI_STATUS AcpiEvAcquireGlobalLock ( UINT16 Timeout) |