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

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

419
420 Status = AcpiUtEvaluateNumericObject (METHOD_NAME__ADR, Node,
421 &Info.Address);
422 if (ACPI_SUCCESS (Status))
423 {
424 Info.Valid |= ACPI_VALID_ADR;
425 }
426
427 Status = AE_OK;
428 }
429
430 /* Validate/Allocate/Clear caller buffer */
431
432 Status = AcpiUtInitializeBuffer (Buffer, Size);
433 if (ACPI_FAILURE (Status))
434 {

--- 22 unchanged lines hidden ---