Deleted Added
full compact
dsmethod.c (99679) dsmethod.c (100966)
1/******************************************************************************
2 *
3 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
1/******************************************************************************
2 *
3 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
4 * $Revision: 86 $
4 * $Revision: 87 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

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

393 Op, ObjDesc, NULL);
394 if (!NextWalkState)
395 {
396 return_ACPI_STATUS (AE_NO_MEMORY);
397 }
398
399 /* Create and init a Root Node */
400
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

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

393 Op, ObjDesc, NULL);
394 if (!NextWalkState)
395 {
396 return_ACPI_STATUS (AE_NO_MEMORY);
397 }
398
399 /* Create and init a Root Node */
400
401 Op = AcpiPsAllocOp (AML_SCOPE_OP);
401 Op = AcpiPsCreateScopeOp ();
402 if (!Op)
403 {
404 Status = AE_NO_MEMORY;
405 goto Cleanup;
406 }
407
408 Status = AcpiDsInitAmlWalk (NextWalkState, Op, MethodNode,
409 ObjDesc->Method.AmlStart, ObjDesc->Method.AmlLength,

--- 240 unchanged lines hidden ---
402 if (!Op)
403 {
404 Status = AE_NO_MEMORY;
405 goto Cleanup;
406 }
407
408 Status = AcpiDsInitAmlWalk (NextWalkState, Op, MethodNode,
409 ObjDesc->Method.AmlStart, ObjDesc->Method.AmlLength,

--- 240 unchanged lines hidden ---