summaryrefslogtreecommitdiff
path: root/source/components/parser
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2013-04-19 05:49:53 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2013-04-19 05:49:53 +0000
commita95efc1a1522251892a7baebcb0569741ad7c6ca (patch)
tree123ed5e9ad0bad1d892c0637e33953142b50843f /source/components/parser
parent9b7735bafd2eb5079bc7f216ba350dbf8f268683 (diff)
Notes
Diffstat (limited to 'source/components/parser')
-rw-r--r--source/components/parser/psxface.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/components/parser/psxface.c b/source/components/parser/psxface.c
index eb0fc7ef5e27..3f991570b868 100644
--- a/source/components/parser/psxface.c
+++ b/source/components/parser/psxface.c
@@ -150,7 +150,7 @@ AcpiPsStartTrace (
}
if ((!AcpiGbl_TraceMethodName) ||
- (AcpiGbl_TraceMethodName != Info->ResolvedNode->Name.Integer))
+ (AcpiGbl_TraceMethodName != Info->Node->Name.Integer))
{
goto Exit;
}
@@ -205,7 +205,7 @@ AcpiPsStopTrace (
}
if ((!AcpiGbl_TraceMethodName) ||
- (AcpiGbl_TraceMethodName != Info->ResolvedNode->Name.Integer))
+ (AcpiGbl_TraceMethodName != Info->Node->Name.Integer))
{
goto Exit;
}
@@ -268,14 +268,14 @@ AcpiPsExecuteMethod (
/* Validate the Info and method Node */
- if (!Info || !Info->ResolvedNode)
+ if (!Info || !Info->Node)
{
return_ACPI_STATUS (AE_NULL_ENTRY);
}
/* Init for new method, wait on concurrency semaphore */
- Status = AcpiDsBeginMethodExecution (Info->ResolvedNode, Info->ObjDesc, NULL);
+ Status = AcpiDsBeginMethodExecution (Info->Node, Info->ObjDesc, NULL);
if (ACPI_FAILURE (Status))
{
return_ACPI_STATUS (Status);
@@ -295,7 +295,7 @@ AcpiPsExecuteMethod (
*/
ACPI_DEBUG_PRINT ((ACPI_DB_PARSE,
"**** Begin Method Parse/Execute [%4.4s] **** Node=%p Obj=%p\n",
- Info->ResolvedNode->Name.Ascii, Info->ResolvedNode, Info->ObjDesc));
+ Info->Node->Name.Ascii, Info->Node, Info->ObjDesc));
/* Create and init a Root Node */
@@ -317,7 +317,7 @@ AcpiPsExecuteMethod (
goto Cleanup;
}
- Status = AcpiDsInitAmlWalk (WalkState, Op, Info->ResolvedNode,
+ Status = AcpiDsInitAmlWalk (WalkState, Op, Info->Node,
Info->ObjDesc->Method.AmlStart,
Info->ObjDesc->Method.AmlLength, Info, Info->PassNumber);
if (ACPI_FAILURE (Status))