Deleted Added
sdiff udiff text old ( 114237 ) new ( 115351 )
full compact
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 /* 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 ---