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, 5 insertions, 7 deletions
diff --git a/sys/contrib/dev/acpica/nsutils.c b/sys/contrib/dev/acpica/nsutils.c
index 1a8363e..c3d7cc1 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: 92 $
+ * $Revision: 93 $
*
*****************************************************************************/
@@ -690,6 +690,9 @@ AcpiNsExternalizeName (
*
* DESCRIPTION: Convert a namespace handle to a real Node
*
+ * Note: Real integer handles allow for more verification
+ * and keep all pointers within this subsystem.
+ *
******************************************************************************/
ACPI_NAMESPACE_NODE *
@@ -701,9 +704,7 @@ AcpiNsMapHandleToNode (
/*
- * Simple implementation for now;
- * TBD: [Future] Real integer handles allow for more verification
- * and keep all pointers within this subsystem!
+ * Simple implementation.
*/
if (!Handle)
{
@@ -715,7 +716,6 @@ AcpiNsMapHandleToNode (
return (AcpiGbl_RootNode);
}
-
/* We can at least attempt to verify the handle */
if (!VALID_DESCRIPTOR_TYPE (Handle, ACPI_DESC_TYPE_NAMED))
@@ -747,8 +747,6 @@ AcpiNsConvertEntryToHandle (
/*
* Simple implementation for now;
- * TBD: [Future] Real integer handles allow for more verification
- * and keep all pointers within this subsystem!
*/
return ((ACPI_HANDLE) Node);
OpenPOWER on IntegriCloud