added WalkState to func defs and invocations

date	2000.08.08.18.35.00;	author agrover;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:58:58 +00:00
parent bd9a09ccdc
commit c642c2bf92

View File

@ -470,7 +470,8 @@ AcpiAmlEisaIdToString (
ACPI_STATUS
AcpiAmlBuildCopyInternalPackageObject (
ACPI_OBJECT_INTERNAL *SourceObj,
ACPI_OBJECT_INTERNAL *DestObj)
ACPI_OBJECT_INTERNAL *DestObj,
ACPI_WALK_STATE *WalkState)
{
UINT32 CurrentDepth = 0;
ACPI_STATUS Status = AE_OK;
@ -573,7 +574,7 @@ AcpiAmlBuildCopyInternalPackageObject (
ThisSourceObj->Common.Type);
LevelPtr->DestObj->Package.Elements[ThisIndex] = ThisDestObj;
Status = AcpiAmlStoreObjectToObject(ThisSourceObj, ThisDestObj);
Status = AcpiAmlStoreObjectToObject(ThisSourceObj, ThisDestObj, WalkState);
if (ACPI_FAILURE (Status))
{