Prefixed all #defines in acconfig.h with ACPI_

date	2002.11.25.20.31.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:05:09 +00:00
parent 784724f1ea
commit abeb3de1f1

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: acstruct.h - Internal structs
* $Revision: 1.20 $
* $Revision: 1.21 $
*
*****************************************************************************/
@ -162,16 +162,16 @@ typedef struct acpi_walk_state
UINT8 *AmlLastWhile;
struct acpi_node Arguments[MTH_NUM_ARGS]; /* Control method arguments */
struct acpi_node Arguments[ACPI_METHOD_NUM_ARGS]; /* Control method arguments */
union acpi_operand_obj **CallerReturnDesc;
ACPI_GENERIC_STATE *ControlState; /* List of control states (nested IFs) */
struct acpi_node LocalVariables[MTH_NUM_LOCALS]; /* Control method locals */
struct acpi_node LocalVariables[ACPI_METHOD_NUM_LOCALS]; /* Control method locals */
struct acpi_node *MethodCallNode; /* Called method Node*/
ACPI_PARSE_OBJECT *MethodCallOp; /* MethodCall Op if running a method */
union acpi_operand_obj *MethodDesc; /* Method descriptor if running a method */
struct acpi_node *MethodNode; /* Method Node if running a method */
ACPI_PARSE_OBJECT *Op; /* Current parser op */
union acpi_operand_obj *Operands[OBJ_NUM_OPERANDS+1]; /* Operands passed to the interpreter (+1 for NULL terminator) */
union acpi_operand_obj *Operands[ACPI_OBJ_NUM_OPERANDS+1]; /* Operands passed to the interpreter (+1 for NULL terminator) */
const ACPI_OPCODE_INFO *OpInfo; /* Info on current opcode */
ACPI_PARSE_OBJECT *Origin; /* Start of walk [Obsolete] */
union acpi_operand_obj **Params;