From 4a5720e5f30ea6a8d31e75f94046c76ace845126 Mon Sep 17 00:00:00 2001 From: jkim Date: Mon, 29 Sep 2014 19:53:38 +0000 Subject: Import ACPICA 20140926. --- source/compiler/aslopcodes.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source/compiler/aslopcodes.c') diff --git a/source/compiler/aslopcodes.c b/source/compiler/aslopcodes.c index 1ad4753..8030c95 100644 --- a/source/compiler/aslopcodes.c +++ b/source/compiler/aslopcodes.c @@ -402,6 +402,7 @@ OpcDoConnection ( ACPI_PARSE_OBJECT *BufferOp; ACPI_PARSE_OBJECT *BufferLengthOp; ACPI_PARSE_OBJECT *BufferDataOp; + ASL_RESOURCE_INFO Info; UINT8 State; @@ -416,8 +417,10 @@ OpcDoConnection ( BufferLengthOp = BufferOp->Asl.Child; BufferDataOp = BufferLengthOp->Asl.Next; + Info.DescriptorTypeOp = BufferDataOp->Asl.Next; + Info.CurrentByteOffset = 0; State = ACPI_RSTATE_NORMAL; - Rnode = RsDoOneResourceDescriptor (BufferDataOp->Asl.Next, 0, &State); + Rnode = RsDoOneResourceDescriptor (&Info, &State); if (!Rnode) { return; /* error */ -- cgit v1.1