Added parent node to all Field object descriptors for better debug

output.  (Does not increase the size of these objects because there was extra
room.)


date	2001.10.29.22.07.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:42:58 +00:00
parent a3f078bd4c
commit 476ece1d9a

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: exprep - ACPI AML (p-code) execution - field prep utilities
* $Revision: 1.101 $
* $Revision: 1.102 $
*
*****************************************************************************/
@ -394,6 +394,7 @@ AcpiExPrepFieldValue (
/* Initialize areas of the object that are common to all fields */
ObjDesc->CommonField.Node = Info->FieldNode;
Status = AcpiExPrepCommonFieldObject (ObjDesc, Info->FieldFlags,
Info->FieldBitPosition, Info->FieldBitLength);
if (ACPI_FAILURE (Status))
@ -402,16 +403,6 @@ AcpiExPrepFieldValue (
return_ACPI_STATUS (Status);
}
/* Initialize areas of the object that are common to all fields */
Status = AcpiExPrepCommonFieldObject (ObjDesc, Info->FieldFlags,
Info->FieldBitPosition, Info->FieldBitLength);
if (ACPI_FAILURE (Status))
{
AcpiUtDeleteObjectDesc (ObjDesc);
return_ACPI_STATUS (Status);
}
/* Initialize areas of the object that are specific to the field type */
switch (Info->FieldType)