Deleted Added
full compact
nsutils.c (126372) nsutils.c (128212)
1/******************************************************************************
2 *
3 * Module Name: nsutils - Utilities for accessing ACPI namespace, accessing
4 * parents and siblings and Scope manipulation
1/******************************************************************************
2 *
3 * Module Name: nsutils - Utilities for accessing ACPI namespace, accessing
4 * parents and siblings and Scope manipulation
5 * $Revision: 133 $
5 * $Revision: 134 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

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

336AcpiNsGetType (
337 ACPI_NAMESPACE_NODE *Node)
338{
339 ACPI_FUNCTION_TRACE ("NsGetType");
340
341
342 if (!Node)
343 {
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

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

336AcpiNsGetType (
337 ACPI_NAMESPACE_NODE *Node)
338{
339 ACPI_FUNCTION_TRACE ("NsGetType");
340
341
342 if (!Node)
343 {
344 ACPI_REPORT_WARNING (("NsGetType: Null Node ptr"));
344 ACPI_REPORT_WARNING (("NsGetType: Null Node input pointer\n"));
345 return_VALUE (ACPI_TYPE_ANY);
346 }
347
348 return_VALUE ((ACPI_OBJECT_TYPE) Node->Type);
349}
350
351
352/*******************************************************************************

--- 858 unchanged lines hidden ---
345 return_VALUE (ACPI_TYPE_ANY);
346 }
347
348 return_VALUE ((ACPI_OBJECT_TYPE) Node->Type);
349}
350
351
352/*******************************************************************************

--- 858 unchanged lines hidden ---