support for ALIAS nodes

date	2002.10.01.19.51.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 18:23:26 +00:00
parent 8c3def8140
commit 50c287634a

View File

@ -1,7 +1,7 @@
/****************************************************************************** /******************************************************************************
* *
* Module Name: nsdump - table dumping routines for debug * Module Name: nsdump - table dumping routines for debug
* $Revision: 1.140 $ * $Revision: 1.141 $
* *
*****************************************************************************/ *****************************************************************************/
@ -514,6 +514,11 @@ AcpiNsDumpOneObject (
break; break;
case INTERNAL_TYPE_ALIAS:
AcpiOsPrintf (" Target %4.4s (%p)\n", ((ACPI_NAMESPACE_NODE *) ObjDesc)->Name.Ascii, ObjDesc);
break;
default: default:
AcpiOsPrintf (" Object %p\n", ObjDesc); AcpiOsPrintf (" Object %p\n", ObjDesc);
@ -608,9 +613,9 @@ AcpiNsDumpOneObject (
/* If there is an attached object, display it */ /* If there is an attached object, display it */
DbgLevel = AcpiDbgLevel; DbgLevel = AcpiDbgLevel;
AcpiDbgLevel = 0; AcpiDbgLevel = 0;
ObjDesc = AcpiNsGetAttachedObject (ThisNode); ObjDesc = AcpiNsGetAttachedObject (ThisNode);
AcpiDbgLevel = DbgLevel; AcpiDbgLevel = DbgLevel;
/* Dump attached objects */ /* Dump attached objects */
@ -786,7 +791,7 @@ AcpiNsDumpTables (
* If the name space has not been initialized, * If the name space has not been initialized,
* there is nothing to dump. * 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; return_VOID;
} }