Deleted Added
full compact
dsmethod.c (114237) dsmethod.c (115351)
1/******************************************************************************
2 *
3 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
4 * $Revision: 90 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************

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

373 }
374
375 ObjDesc = AcpiNsGetAttachedObject (MethodNode);
376 if (!ObjDesc)
377 {
378 return_ACPI_STATUS (AE_NULL_OBJECT);
379 }
380
1/******************************************************************************
2 *
3 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
4 * $Revision: 90 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************

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

373 }
374
375 ObjDesc = AcpiNsGetAttachedObject (MethodNode);
376 if (!ObjDesc)
377 {
378 return_ACPI_STATUS (AE_NULL_OBJECT);
379 }
380
381 ObjDesc->Method.OwningId = AcpiUtAllocateOwnerId (ACPI_OWNER_TYPE_METHOD);
382
381 /* Init for new method, wait on concurrency semaphore */
382
383 Status = AcpiDsBeginMethodExecution (MethodNode, ObjDesc,
384 ThisWalkState->MethodNode);
385 if (ACPI_FAILURE (Status))
386 {
387 return_ACPI_STATUS (Status);
388 }

--- 261 unchanged lines hidden ---
383 /* Init for new method, wait on concurrency semaphore */
384
385 Status = AcpiDsBeginMethodExecution (MethodNode, ObjDesc,
386 ThisWalkState->MethodNode);
387 if (ACPI_FAILURE (Status))
388 {
389 return_ACPI_STATUS (Status);
390 }

--- 261 unchanged lines hidden ---