Deleted Added
sdiff udiff text old ( 127175 ) new ( 128212 )
full compact
1/*******************************************************************************
2 *
3 * Module Name: nsaccess - Top-level functions for accessing ACPI namespace
4 * $Revision: 179 $
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

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

330
331 AcpiUtRemoveReference (ObjDesc);
332 }
333 }
334
335
336UnlockAndExit:
337 (void) AcpiUtReleaseMutex (ACPI_MTX_NAMESPACE);
338 return_ACPI_STATUS (Status);
339}
340
341
342/*******************************************************************************
343 *
344 * FUNCTION: AcpiNsLookup
345 *

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

680 * 5) And the type of target object is known (not TYPE_ANY)
681 * 6) And target object does not match what we are looking for
682 *
683 * Then we have a type mismatch. Just warn and ignore it.
684 */
685 if ((NumSegments == 0) &&
686 (TypeToCheckFor != ACPI_TYPE_ANY) &&
687 (TypeToCheckFor != ACPI_TYPE_LOCAL_ALIAS) &&
688 (TypeToCheckFor != ACPI_TYPE_LOCAL_SCOPE) &&
689 (ThisNode->Type != ACPI_TYPE_ANY) &&
690 (ThisNode->Type != TypeToCheckFor))
691 {
692 /* Complain about a type mismatch */
693
694 ACPI_REPORT_WARNING (
695 ("NsLookup: Type mismatch on %4.4s (%s), searching for (%s)\n",

--- 43 unchanged lines hidden ---