summaryrefslogtreecommitdiffstats
path: root/sys/contrib/dev/acpica/nswalk.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/contrib/dev/acpica/nswalk.c')
-rw-r--r--sys/contrib/dev/acpica/nswalk.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/contrib/dev/acpica/nswalk.c b/sys/contrib/dev/acpica/nswalk.c
index dab3264..39d948f 100644
--- a/sys/contrib/dev/acpica/nswalk.c
+++ b/sys/contrib/dev/acpica/nswalk.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: nswalk - Functions for walking the ACPI namespace
- * $Revision: 36 $
+ * $Revision: 37 $
*
*****************************************************************************/
@@ -265,7 +265,7 @@ AcpiNsWalkNamespace (
/* Null child means "get first node" */
ParentNode = StartNode;
- ChildNode = 0;
+ ChildNode = NULL;
ChildType = ACPI_TYPE_ANY;
Level = 1;
@@ -350,15 +350,15 @@ AcpiNsWalkNamespace (
*/
if ((Level < MaxDepth) && (Status != AE_CTRL_DEPTH))
{
- if (AcpiNsGetNextNode (ACPI_TYPE_ANY, ChildNode, 0))
+ if (AcpiNsGetNextNode (ACPI_TYPE_ANY, ChildNode, NULL))
{
/*
* There is at least one child of this
* node, visit the onde
*/
Level++;
- ParentNode = ChildNode;
- ChildNode = 0;
+ ParentNode = ChildNode;
+ ChildNode = NULL;
}
}
}
OpenPOWER on IntegriCloud