diff options
author | Mike Smith <msmith@FreeBSD.org> | 2000-12-08 09:20:40 +0000 |
---|---|---|
committer | Mike Smith <msmith@FreeBSD.org> | 2000-12-08 09:20:40 +0000 |
commit | f6402773ea74398ade71cd4c72b4b5082251f753 (patch) | |
tree | c4556035d0a02228c5da80dce4638e77d2521d9c /sys/contrib/dev/acpica/nsaccess.c | |
parent | f2ed5750af4c77d9075ddf1c28ecfdea8c12c6ae (diff) |
Notes
Diffstat (limited to 'sys/contrib/dev/acpica/nsaccess.c')
-rw-r--r-- | sys/contrib/dev/acpica/nsaccess.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/contrib/dev/acpica/nsaccess.c b/sys/contrib/dev/acpica/nsaccess.c index 87ee4f31369e3..c2f21833e03d1 100644 --- a/sys/contrib/dev/acpica/nsaccess.c +++ b/sys/contrib/dev/acpica/nsaccess.c @@ -1,7 +1,7 @@ /******************************************************************************* * * Module Name: nsaccess - Top-level functions for accessing ACPI namespace - * $Revision: 113 $ + * $Revision: 115 $ * ******************************************************************************/ @@ -392,6 +392,9 @@ AcpiNsLookup ( if ((!ScopeInfo) || (!ScopeInfo->Scope.Node)) { + DEBUG_PRINT (TRACE_NAMES, + ("NsLookup: Null scope prefix, using root node (%p)\n", AcpiGbl_RootNode)); + PrefixNode = AcpiGbl_RootNode; } else @@ -604,7 +607,7 @@ AcpiNsLookup ( ThisSearchType = Type; } - /* Pluck and ACPI name from the front of the pathname */ + /* Pluck one ACPI name from the front of the pathname */ MOVE_UNALIGNED32_TO_32 (&SimpleName, Pathname); @@ -655,7 +658,7 @@ AcpiNsLookup ( /* Complain about a type mismatch */ REPORT_WARNING ( - ("NsLookup: %4.4s, type 0x%X, checking for type 0x%X\n", + ("NsLookup: %4.4s, type %X, checking for type %X\n", &SimpleName, ThisNode->Type, TypeToCheckFor)); } @@ -679,7 +682,7 @@ AcpiNsLookup ( */ DEBUG_PRINT (ACPI_INFO, - ("NsLookup: Load mode=%d ThisNode=%x\n", + ("NsLookup: Load mode=%X ThisNode=%X\n", InterpreterMode, ThisNode)); } |