Renamed Lvalue

date	2000.04.19.22.31.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:53:11 +00:00
parent d6fb4c0e0b
commit 54520d591c

View File

@ -535,11 +535,11 @@ typedef struct /* ADDRESS HANDLER */
/*
* Local object type is used for these opcodes:
* The Reference object type is used for these opcodes:
* Arg[0-6], Local[0-7], IndexOp, NameOp, ZeroOp, OneOp, OnesOp, DebugOp
*/
typedef struct /* Lvalue - Local object type */
typedef struct /* Reference - Local object type */
{
ACPI_OBJECT_COMMON
@ -556,7 +556,7 @@ typedef struct /* Lvalue - Local object type */
void *Reserved_p4;
void *Reserved_p5;
} ACPI_OBJECT_Lvalue;
} ACPI_OBJECT_Reference;
@ -586,7 +586,7 @@ typedef union AcpiObjInternal
ACPI_OBJECT_Field Field;
ACPI_OBJECT_BankField BankField;
ACPI_OBJECT_IndexField IndexField;
ACPI_OBJECT_Lvalue Lvalue;
ACPI_OBJECT_Reference Reference;
ACPI_OBJECT_NotifyHandler NotifyHandler;
ACPI_OBJECT_AddrHandler AddrHandler;