Support for late evaluation of Buffer and Package operands (They may

contain TermArgs).


date	2002.03.13.18.13.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:24:41 +00:00
parent b628258003
commit 66c24886d0
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: exdump - Interpreter debug output routines
* $Revision: 1.145 $
* $Revision: 1.146 $
*
*****************************************************************************/
@ -852,7 +852,6 @@ AcpiExDumpObjectDescriptor (
AcpiExOutInteger ("Flags", ObjDesc->Package.Flags);
AcpiExOutInteger ("Count", ObjDesc->Package.Count);
AcpiExOutPointer ("Elements", ObjDesc->Package.Elements);
AcpiExOutPointer ("NextElement", ObjDesc->Package.NextElement);
/* Dump the package contents */

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: exfield - ACPI AML (p-code) execution - field manipulation
* $Revision: 1.105 $
* $Revision: 1.106 $
*
*****************************************************************************/
@ -213,6 +213,7 @@ AcpiExReadDataFromField (
return_ACPI_STATUS (AE_NO_MEMORY);
}
BufferDesc->Common.Flags = AOPOBJ_DATA_VALID;
BufferDesc->Buffer.Length = Length;
Buffer = BufferDesc->Buffer.Pointer;
}