mirror of
https://github.com/acpica/acpica/
synced 2025-01-15 22:09:17 +03:00
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:
parent
82b328ca1d
commit
c707c80666
@ -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?
|
||||
|
Loading…
Reference in New Issue
Block a user