diff options
Diffstat (limited to 'source/compiler/aslxref.c')
-rw-r--r-- | source/compiler/aslxref.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/compiler/aslxref.c b/source/compiler/aslxref.c index 62933ec1be70f..ebd356e62ade8 100644 --- a/source/compiler/aslxref.c +++ b/source/compiler/aslxref.c @@ -533,7 +533,7 @@ XfNamespaceLocateBegin ( * references to other objects within the namespace and the parent objects * of name declarations */ - if (Op->Asl.CompileFlags & NODE_IS_NAME_DECLARATION) + if (Op->Asl.CompileFlags & OP_IS_NAME_DECLARATION) { return_ACPI_STATUS (AE_OK); } @@ -559,7 +559,7 @@ XfNamespaceLocateBegin ( RegisterNumber = Op->Asl.AmlOpcode & 0x0007; /* 0x60 through 0x67 */ MethodLocals = Node->MethodLocals; - if (Op->Asl.CompileFlags & NODE_IS_TARGET) + if (Op->Asl.CompileFlags & OP_IS_TARGET) { /* Local is being initialized */ @@ -603,7 +603,7 @@ XfNamespaceLocateBegin ( MethodArgs[RegisterNumber].Flags |= ASL_ARG_REFERENCED; MethodArgs[RegisterNumber].Op = Op; - if (Op->Asl.CompileFlags & NODE_IS_TARGET) + if (Op->Asl.CompileFlags & OP_IS_TARGET) { /* Arg is being initialized */ @@ -676,7 +676,7 @@ XfNamespaceLocateBegin ( /* Name must appear as the last parameter */ NextOp = Op->Asl.Child; - while (!(NextOp->Asl.CompileFlags & NODE_IS_NAME_DECLARATION)) + while (!(NextOp->Asl.CompileFlags & OP_IS_NAME_DECLARATION)) { NextOp = NextOp->Asl.Next; } @@ -916,7 +916,7 @@ XfNamespaceLocateBegin ( Op->Asl.AmlLength = 0; Op->Asl.ParseOpcode = PARSEOP_INTEGER; Op->Asl.Value.Integer = (UINT64) Offset; - Op->Asl.CompileFlags |= NODE_IS_RESOURCE_FIELD; + Op->Asl.CompileFlags |= OP_IS_RESOURCE_FIELD; OpcGenerateAmlOpcode (Op); } |