diff options
author | Mark Santcroos <marks@FreeBSD.org> | 2004-12-01 23:14:10 +0000 |
---|---|---|
committer | Mark Santcroos <marks@FreeBSD.org> | 2004-12-01 23:14:10 +0000 |
commit | c846686064718f6ab1d92107f960542f6f400744 (patch) | |
tree | 4910f03edb15ce309eeb1b58facc922df30dd767 /sys/contrib/dev/acpica/nsalloc.c | |
parent | aaff1d4cfa72d64a9dbbcd65e3a6d260280ae397 (diff) |
Vendor import of Intel ACPI-CA 20041119
Notes
Notes:
svn path=/vendor-sys/acpica/dist/; revision=138287
Diffstat (limited to 'sys/contrib/dev/acpica/nsalloc.c')
-rw-r--r-- | sys/contrib/dev/acpica/nsalloc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/contrib/dev/acpica/nsalloc.c b/sys/contrib/dev/acpica/nsalloc.c index 5ab596ad689e..7b0a7045c382 100644 --- a/sys/contrib/dev/acpica/nsalloc.c +++ b/sys/contrib/dev/acpica/nsalloc.c @@ -1,7 +1,7 @@ /******************************************************************************* * * Module Name: nsalloc - Namespace allocation and deletion utilities - * $Revision: 87 $ + * $Revision: 88 $ * ******************************************************************************/ @@ -600,15 +600,15 @@ AcpiNsDeleteNamespaceSubtree ( /* Check if this node has any children */ - 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 node */ Level++; - ParentNode = ChildNode; - ChildNode = 0; + ParentNode = ChildNode; + ChildNode = NULL; } } else @@ -763,8 +763,8 @@ AcpiNsDeleteNamespaceByOwner ( * visit the node */ Level++; - ParentNode = ChildNode; - ChildNode = NULL; + ParentNode = ChildNode; + ChildNode = NULL; } else if (ChildNode->OwnerId == OwnerId) { |