summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/nsutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/nsutils.c')
-rw-r--r--sys/contrib/dev/acpica/nsutils.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/sys/contrib/dev/acpica/nsutils.c b/sys/contrib/dev/acpica/nsutils.c
index 017d917..a786de7 100644
--- a/sys/contrib/dev/acpica/nsutils.c
+++ b/sys/contrib/dev/acpica/nsutils.c
@@ -2,7 +2,7 @@
*
* Module Name: nsutils - Utilities for accessing ACPI namespace, accessing
* parents and siblings and Scope manipulation
- * $Revision: 110 $
+ * $Revision: 112 $
*
*****************************************************************************/
@@ -557,10 +557,14 @@ AcpiNsExternalizeName (
case '^':
for (i = 0; i < InternalNameLength; i++)
{
- if (InternalName[i] != '^')
+ if (InternalName[i] == '^')
{
PrefixLength = i + 1;
}
+ else
+ {
+ break;
+ }
}
if (i == InternalNameLength)
@@ -980,7 +984,7 @@ AcpiNsFindParentName (
}
-#if defined(ACPI_DEBUG) || defined(ENABLE_DEBUGGER)
+#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
/*******************************************************************************
*
@@ -1016,7 +1020,7 @@ AcpiNsExistDownstreamSibling (
return (FALSE);
}
-#endif /* ACPI_DEBUG */
+#endif /* ACPI_DEBUG_OUTPUT */
/*******************************************************************************
OpenPOWER on IntegriCloud