Deleted Added
full compact
nssearch.c (99146) nssearch.c (99679)
1/*******************************************************************************
2 *
3 * Module Name: nssearch - Namespace search
1/*******************************************************************************
2 *
3 * Module Name: nssearch - Namespace search
4 * $Revision: 84 $
4 * $Revision: 86 $
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

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

112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
114 *
115 *****************************************************************************/
116
117#define __NSSEARCH_C__
118
119#include "acpi.h"
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.

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

112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
114 *
115 *****************************************************************************/
116
117#define __NSSEARCH_C__
118
119#include "acpi.h"
120#include "amlcode.h"
121#include "acinterp.h"
122#include "acnamesp.h"
123
124
125#define _COMPONENT ACPI_NAMESPACE
126 ACPI_MODULE_NAME ("nssearch")
127
128
129/*******************************************************************************

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

303 if (!ParentNode)
304 {
305 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, "[%4.4s] has no parent\n",
306 (char *) &TargetName));
307 }
308
309 if (AcpiNsLocal (Type))
310 {
120#include "acnamesp.h"
121
122
123#define _COMPONENT ACPI_NAMESPACE
124 ACPI_MODULE_NAME ("nssearch")
125
126
127/*******************************************************************************

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

301 if (!ParentNode)
302 {
303 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, "[%4.4s] has no parent\n",
304 (char *) &TargetName));
305 }
306
307 if (AcpiNsLocal (Type))
308 {
311 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES, "[%4.4s] type [%s] must be local to this scope (no parent search)\n",
309 ACPI_DEBUG_PRINT ((ACPI_DB_NAMES,
310 "[%4.4s] type [%s] must be local to this scope (no parent search)\n",
312 (char *) &TargetName, AcpiUtGetTypeName (Type)));
313 }
314
315 return_ACPI_STATUS (AE_NOT_FOUND);
316 }
317
318 /* Search the parent tree */
319

--- 171 unchanged lines hidden ---
311 (char *) &TargetName, AcpiUtGetTypeName (Type)));
312 }
313
314 return_ACPI_STATUS (AE_NOT_FOUND);
315 }
316
317 /* Search the parent tree */
318

--- 171 unchanged lines hidden ---