Deleted Added
full compact
dsutils.c (123315) dsutils.c (126372)
1/*******************************************************************************
2 *
3 * Module Name: dsutils - Dispatcher utilities
1/*******************************************************************************
2 *
3 * Module Name: dsutils - Dispatcher utilities
4 * $Revision: 100 $
4 * $Revision: 102 $
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2003, Intel Corp.
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.
13 * All rights reserved.
14 *
15 * 2. License
16 *
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.

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

360 ACPI_STATUS Status = AE_OK;
361
362
363 ACPI_FUNCTION_TRACE_PTR ("DsResolveOperands", WalkState);
364
365
366 /*
367 * Attempt to resolve each of the valid operands
13 * All rights reserved.
14 *
15 * 2. License
16 *
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.

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

360 ACPI_STATUS Status = AE_OK;
361
362
363 ACPI_FUNCTION_TRACE_PTR ("DsResolveOperands", WalkState);
364
365
366 /*
367 * Attempt to resolve each of the valid operands
368 * Method arguments are passed by value, not by reference
368 * Method arguments are passed by reference, not by value. This means
369 * that the actual objects are passed, not copies of the objects.
369 */
370 for (i = 0; i < WalkState->NumOperands; i++)
371 {
372 Status = AcpiExResolveToValue (&WalkState->Operands[i], WalkState);
373 if (ACPI_FAILURE (Status))
374 {
375 break;
376 }

--- 358 unchanged lines hidden ---
370 */
371 for (i = 0; i < WalkState->NumOperands; i++)
372 {
373 Status = AcpiExResolveToValue (&WalkState->Operands[i], WalkState);
374 if (ACPI_FAILURE (Status))
375 {
376 break;
377 }

--- 358 unchanged lines hidden ---