date	2001.03.13.21.13.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:20:25 +00:00
parent 065f4891f9
commit c724bb6db7

View File

@ -1,7 +1,7 @@
/******************************************************************************* /*******************************************************************************
* *
* Module Name: dbexec - debugger control method execution * Module Name: dbexec - debugger control method execution
* $Revision: 1.22 $ * $Revision: 1.24 $
* *
******************************************************************************/ ******************************************************************************/
@ -128,7 +128,7 @@
#ifdef ENABLE_DEBUGGER #ifdef ENABLE_DEBUGGER
#define _COMPONENT DEBUGGER #define _COMPONENT ACPI_DEBUGGER
MODULE_NAME ("dbexec") MODULE_NAME ("dbexec")
@ -342,7 +342,7 @@ AcpiDbExecute (
if (ReturnObj.Length) if (ReturnObj.Length)
{ {
AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n", AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
Info.Pathname, ReturnObj.Pointer, ReturnObj.Length); Info.Pathname, ReturnObj.Pointer, ReturnObj.Length);
AcpiDbDumpObject (ReturnObj.Pointer, 1); AcpiDbDumpObject (ReturnObj.Pointer, 1);
} }
@ -382,7 +382,7 @@ AcpiDbMethodThread (
{ {
if (ReturnObj.Length) if (ReturnObj.Length)
{ {
AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n", AcpiOsPrintf ("Execution of %s returned object %p Buflen %X\n",
Info->Pathname, ReturnObj.Pointer, ReturnObj.Length); Info->Pathname, ReturnObj.Pointer, ReturnObj.Length);
AcpiDbDumpObject (ReturnObj.Pointer, 1); AcpiDbDumpObject (ReturnObj.Pointer, 1);
} }