aboutsummaryrefslogtreecommitdiff
path: root/debugger/dbutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'debugger/dbutils.c')
-rw-r--r--debugger/dbutils.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/debugger/dbutils.c b/debugger/dbutils.c
index 27fcd1e8d3f7..b49726369b8b 100644
--- a/debugger/dbutils.c
+++ b/debugger/dbutils.c
@@ -1,7 +1,6 @@
/*******************************************************************************
*
* Module Name: dbutils - AML debugger utilities
- * $Revision: 1.83 $
*
******************************************************************************/
@@ -9,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2007, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -116,6 +115,7 @@
#include "acpi.h"
+#include "accommon.h"
#include "acnamesp.h"
#include "acdebug.h"
#include "acdisasm.h"
@@ -248,8 +248,7 @@ AcpiDbDumpExternalObject (
{
case ACPI_TYPE_ANY:
- AcpiOsPrintf ("[Object Reference] = %p", ObjDesc->Reference.Handle);
- AcpiDmDisplayInternalObject (ObjDesc->Reference.Handle, NULL);
+ AcpiOsPrintf ("[Null Object] (Type=0)\n");
break;
@@ -300,7 +299,7 @@ AcpiDbDumpExternalObject (
case ACPI_TYPE_LOCAL_REFERENCE:
- AcpiOsPrintf ("[Object Reference] = %p", ObjDesc->Reference.Handle);
+ AcpiOsPrintf ("[Object Reference] = ");
AcpiDmDisplayInternalObject (ObjDesc->Reference.Handle, NULL);
break;