Migrated ASL compiler and core components to use a common

PARSE_OBJECT.


date	2002.04.04.21.19.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 15:38:47 +00:00
parent 82b328ca1d
commit c707c80666

View File

@ -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?