mirror of
https://github.com/acpica/acpica/
synced 2025-01-29 12:45:29 +03:00
support for ALIAS nodes
date 2002.10.01.19.51.00; author rmoore1; state Exp;
This commit is contained in:
parent
8c3def8140
commit
50c287634a
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Module Name: nsdump - table dumping routines for debug
|
||||
* $Revision: 1.140 $
|
||||
* $Revision: 1.141 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -514,6 +514,11 @@ AcpiNsDumpOneObject (
|
||||
break;
|
||||
|
||||
|
||||
case INTERNAL_TYPE_ALIAS:
|
||||
|
||||
AcpiOsPrintf (" Target %4.4s (%p)\n", ((ACPI_NAMESPACE_NODE *) ObjDesc)->Name.Ascii, ObjDesc);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
||||
AcpiOsPrintf (" Object %p\n", ObjDesc);
|
||||
@ -608,9 +613,9 @@ AcpiNsDumpOneObject (
|
||||
|
||||
/* If there is an attached object, display it */
|
||||
|
||||
DbgLevel = AcpiDbgLevel;
|
||||
DbgLevel = AcpiDbgLevel;
|
||||
AcpiDbgLevel = 0;
|
||||
ObjDesc = AcpiNsGetAttachedObject (ThisNode);
|
||||
ObjDesc = AcpiNsGetAttachedObject (ThisNode);
|
||||
AcpiDbgLevel = DbgLevel;
|
||||
|
||||
/* Dump attached objects */
|
||||
@ -786,7 +791,7 @@ AcpiNsDumpTables (
|
||||
* If the name space has not been initialized,
|
||||
* there is nothing to dump.
|
||||
*/
|
||||
ACPI_DEBUG_PRINT ((ACPI_DB_TABLES, "name space not initialized!\n"));
|
||||
ACPI_DEBUG_PRINT ((ACPI_DB_TABLES, "namespace not initialized!\n"));
|
||||
return_VOID;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user