mirror of
https://github.com/acpica/acpica/
synced 2025-01-18 15:39:18 +03:00
changed a define
date 2005.06.17.19.45.00; author rmoore1; state Exp;
This commit is contained in:
parent
4fa94d808c
commit
6df35ba559
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: psparse - Parser top level AML parse routines
|
||||
* $Revision: 1.155 $
|
||||
* $Revision: 1.156 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -208,9 +208,9 @@ AcpiPsPeekOpcode (
|
||||
Aml = ParserState->Aml;
|
||||
Opcode = (UINT16) ACPI_GET8 (Aml);
|
||||
|
||||
if (Opcode == AML_EXTOP)
|
||||
if (Opcode == AML_EXTENDED_OP_PREFIX)
|
||||
{
|
||||
/* Extended opcode */
|
||||
/* Extended opcode, get the second opcode byte */
|
||||
|
||||
Aml++;
|
||||
Opcode = (UINT16) ((Opcode << 8) | ACPI_GET8 (Aml));
|
||||
|
Loading…
Reference in New Issue
Block a user