From c707c80666a60840555a8f72d92684307d9c8b7c Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 15:38:47 +0000 Subject: [PATCH] Migrated ASL compiler and core components to use a common PARSE_OBJECT. date 2002.04.04.21.19.00; author rmoore1; state Exp; --- source/common/adisasm.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/common/adisasm.c b/source/common/adisasm.c index ec5bde4b7..6d84fc654 100644 --- a/source/common/adisasm.c +++ b/source/common/adisasm.c @@ -232,7 +232,7 @@ c ( ACPI_PARSE_OBJECT *Op) { - switch (Op->Opcode) + switch (Op->AmlOpcode) { case AML_METHOD_OP: return BLOCK_BRACE; @@ -371,7 +371,7 @@ AdSecondPassParse ( while (Op) { - if (Op->Opcode == AML_METHOD_OP) + if (Op->AmlOpcode == AML_METHOD_OP) { printf ("."); @@ -418,7 +418,7 @@ AdSecondPassParse ( } - if (Op->Opcode == AML_REGION_OP) + if (Op->AmlOpcode == AML_REGION_OP) { /* TBD: Code below isn't quite the right thing to do! * Is there any need to parse regions here?