aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib/dev/acpica/nsdump.c
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>2001-09-07 01:22:25 +0000
committerMike Smith <msmith@FreeBSD.org>2001-09-07 01:22:25 +0000
commit7fb2c1c6169b76180d4ee5c3147edf4da2fdd083 (patch)
treeba0c24c50a259baa38d43cef66fae1699ec4f152 /sys/contrib/dev/acpica/nsdump.c
parent2ee2f9cb7457edd22680e19323177347cd0aabff (diff)
downloadsrc-7fb2c1c6169b76180d4ee5c3147edf4da2fdd083.tar.gz
src-7fb2c1c6169b76180d4ee5c3147edf4da2fdd083.zip
Vendor-branch import of the Intel ACPI CA 20010831 snapshot.
Notes
Notes: svn path=/vendor-sys/acpica/dist/; revision=83174
Diffstat (limited to 'sys/contrib/dev/acpica/nsdump.c')
-rw-r--r--sys/contrib/dev/acpica/nsdump.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/sys/contrib/dev/acpica/nsdump.c b/sys/contrib/dev/acpica/nsdump.c
index 85644af280a3..6e237f4952cb 100644
--- a/sys/contrib/dev/acpica/nsdump.c
+++ b/sys/contrib/dev/acpica/nsdump.c
@@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: nsdump - table dumping routines for debug
- * $Revision: 95 $
+ * $Revision: 99 $
*
*****************************************************************************/
@@ -156,6 +156,7 @@ AcpiNsDumpPathname (
FUNCTION_TRACE ("NsDumpPathname");
+
/* Do this only if the requested debug level and component are enabled */
if (!(AcpiDbgLevel & Level) || !(AcpiDbgLayer & Component))
@@ -215,7 +216,7 @@ AcpiNsDumpOneObject (
UINT32 WhichBit;
- PROC_NAME ("AcpiNsDumpOneObject");
+ PROC_NAME ("NsDumpOneObject");
ThisNode = AcpiNsConvertHandleToEntry (ObjHandle);
@@ -314,7 +315,6 @@ AcpiNsDumpOneObject (
/*
* Now we can print out the pertinent information
*/
-
ACPI_DEBUG_PRINT_RAW ((ACPI_DB_TABLES, " %4.4s %-9s ", &ThisNode->Name, AcpiUtGetTypeName (Type)));
ACPI_DEBUG_PRINT_RAW ((ACPI_DB_TABLES, "%p S:%p O:%p", ThisNode, ThisNode->Child, ThisNode->Object));
@@ -516,6 +516,9 @@ AcpiNsDumpObjects (
ACPI_WALK_INFO Info;
+ FUNCTION_ENTRY ();
+
+
Info.DebugLevel = ACPI_LV_TABLES;
Info.OwnerId = OwnerId;
@@ -549,7 +552,8 @@ AcpiNsDumpOneDevice (
ACPI_STATUS Status;
UINT32 i;
- PROC_NAME ("AcpiNsDumpOneDevice");
+
+ PROC_NAME ("NsDumpOneDevice");
Status = AcpiNsDumpOneObject (ObjHandle, Level, Context, ReturnValue);
@@ -585,12 +589,13 @@ AcpiNsDumpRootDevices (void)
{
ACPI_HANDLE SysBusHandle;
- PROC_NAME ("AcpiNsDumpRootDevices");
+
+ PROC_NAME ("NsDumpRootDevices");
/* Only dump the table if tracing is enabled */
- if (!(ACPI_DB_TABLES & AcpiDbgLevel))
+ if (!(ACPI_LV_TABLES & AcpiDbgLevel))
{
return;
}
@@ -671,14 +676,13 @@ AcpiNsDumpEntry (
ACPI_WALK_INFO Info;
- FUNCTION_TRACE_PTR ("NsDumpEntry", Handle);
+ FUNCTION_ENTRY ();
+
Info.DebugLevel = DebugLevel;
Info.OwnerId = ACPI_UINT32_MAX;
AcpiNsDumpOneObject (Handle, 1, &Info, NULL);
-
- return_VOID;
}
#endif