Deleted Added
full compact
dsopcode.c (129684) dsopcode.c (131440)
1/******************************************************************************
2 *
3 * Module Name: dsopcode - Dispatcher Op Region support and handling of
4 * "control" opcodes
1/******************************************************************************
2 *
3 * Module Name: dsopcode - Dispatcher Op Region support and handling of
4 * "control" opcodes
5 * $Revision: 94 $
5 * $Revision: 95 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

--- 134 unchanged lines hidden (view full) ---

148 ACPI_NAMESPACE_NODE *Node,
149 ACPI_NAMESPACE_NODE *ScopeNode,
150 UINT32 AmlLength,
151 UINT8 *AmlStart)
152{
153 ACPI_STATUS Status;
154 ACPI_PARSE_OBJECT *Op;
155 ACPI_WALK_STATE *WalkState;
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

--- 134 unchanged lines hidden (view full) ---

148 ACPI_NAMESPACE_NODE *Node,
149 ACPI_NAMESPACE_NODE *ScopeNode,
150 UINT32 AmlLength,
151 UINT8 *AmlStart)
152{
153 ACPI_STATUS Status;
154 ACPI_PARSE_OBJECT *Op;
155 ACPI_WALK_STATE *WalkState;
156 ACPI_PARSE_OBJECT *Arg;
157
158
159 ACPI_FUNCTION_TRACE ("DsExecuteArguments");
160
161
162 /*
163 * Allocate a new parser op to be the root of the parsed tree
164 */

--- 34 unchanged lines hidden (view full) ---

199 if (ACPI_FAILURE (Status))
200 {
201 AcpiPsDeleteParseTree (Op);
202 return_ACPI_STATUS (Status);
203 }
204
205 /* Get and init the Op created above */
206
156
157
158 ACPI_FUNCTION_TRACE ("DsExecuteArguments");
159
160
161 /*
162 * Allocate a new parser op to be the root of the parsed tree
163 */

--- 34 unchanged lines hidden (view full) ---

198 if (ACPI_FAILURE (Status))
199 {
200 AcpiPsDeleteParseTree (Op);
201 return_ACPI_STATUS (Status);
202 }
203
204 /* Get and init the Op created above */
205
207 Arg = Op->Common.Value.Arg;
208 Op->Common.Node = Node;
206 Op->Common.Node = Node;
209 Arg->Common.Node = Node;
210 AcpiPsDeleteParseTree (Op);
211
212 /* Evaluate the deferred arguments */
213
214 Op = AcpiPsAllocOp (AML_INT_EVAL_SUBTREE_OP);
215 if (!Op)
216 {
217 return_ACPI_STATUS (AE_NO_MEMORY);

--- 1057 unchanged lines hidden ---
207 AcpiPsDeleteParseTree (Op);
208
209 /* Evaluate the deferred arguments */
210
211 Op = AcpiPsAllocOp (AML_INT_EVAL_SUBTREE_OP);
212 if (!Op)
213 {
214 return_ACPI_STATUS (AE_NO_MEMORY);

--- 1057 unchanged lines hidden ---