summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2018-10-19 12:52:53 -0700
committerGitHub <noreply@github.com>2018-10-19 12:52:53 -0700
commitc399f1749d2d20e966dfb2609acb874f0248730a (patch)
tree1b0bf799173268b2f843719cc4e6cedbd9328329
parenta657a5c029e945ebcf160cd0300a1e25471ed85c (diff)
parent889ff8f90d5ce39df650409bd94d7afff0f90c2f (diff)
downloadacpica-c399f1749d2d20e966dfb2609acb874f0248730a.tar.gz
Merge pull request #417 from SchmErik/gblAddr
AML interpreter: add region addresses in global list during initializ…
-rw-r--r--source/components/dispatcher/dsopcode.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/components/dispatcher/dsopcode.c b/source/components/dispatcher/dsopcode.c
index 038993c77..ca2cd4700 100644
--- a/source/components/dispatcher/dsopcode.c
+++ b/source/components/dispatcher/dsopcode.c
@@ -586,6 +586,9 @@ AcpiDsEvalRegionOperands (
ObjDesc, ACPI_FORMAT_UINT64 (ObjDesc->Region.Address),
ObjDesc->Region.Length));
+ Status = AcpiUtAddAddressRange (ObjDesc->Region.SpaceId,
+ ObjDesc->Region.Address, ObjDesc->Region.Length, Node);
+
/* Now the address and length are valid for this opregion */
ObjDesc->Region.Flags |= AOPOBJ_DATA_VALID;