diff options
author | Robert Moore <Robert.Moore@intel.com> | 2022-01-20 13:55:47 -0800 |
---|---|---|
committer | Robert Moore <Robert.Moore@intel.com> | 2022-01-20 13:55:47 -0800 |
commit | b32dde35e26a63a85d78d4dc0a7260b61e626ac1 (patch) | |
tree | 72f00753dcec9db3ba32918112737b4ef4dbc2bf /source/compiler | |
parent | 84bf573ab7222c4e1c22167b22d29c4da1552b20 (diff) | |
download | acpica-b32dde35e26a63a85d78d4dc0a7260b61e626ac1.tar.gz |
Add new acpi 6.4 semantics for LoadTable operator
DDB_HANDLE is gone, now loadtable returns a pass/fail integer.
Diffstat (limited to 'source/compiler')
-rw-r--r-- | source/compiler/aslmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/compiler/aslmap.c b/source/compiler/aslmap.c index 126cbe1ed..1f462c857 100644 --- a/source/compiler/aslmap.c +++ b/source/compiler/aslmap.c @@ -380,7 +380,7 @@ const ASL_MAPPING_ENTRY AslKeywordMapping [] = /* LNOT */ OP_TABLE_ENTRY (AML_LOGICAL_NOT_OP, 0, 0, ACPI_BTYPE_INTEGER), /* LNOTEQUAL */ OP_TABLE_ENTRY (AML_LOGICAL_NOT_EQUAL_OP, 0, 0, ACPI_BTYPE_INTEGER), /* LOAD */ OP_TABLE_ENTRY (AML_LOAD_OP, 0, 0, ACPI_BTYPE_INTEGER), -/* LOADTABLE */ OP_TABLE_ENTRY (AML_LOAD_TABLE_OP, 0, 0, ACPI_BTYPE_DDB_HANDLE), +/* LOADTABLE */ OP_TABLE_ENTRY (AML_LOAD_TABLE_OP, 0, 0, ACPI_BTYPE_INTEGER), /* LOCAL0 */ OP_TABLE_ENTRY (AML_LOCAL0, 0, 0, ACPI_BTYPE_OBJECTS_AND_REFS), /* LOCAL1 */ OP_TABLE_ENTRY (AML_LOCAL1, 0, 0, ACPI_BTYPE_OBJECTS_AND_REFS), /* LOCAL2 */ OP_TABLE_ENTRY (AML_LOCAL2, 0, 0, ACPI_BTYPE_OBJECTS_AND_REFS), |