diff options
Diffstat (limited to 'sys/contrib/dev/acpica/dbcmds.c')
-rw-r--r-- | sys/contrib/dev/acpica/dbcmds.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/contrib/dev/acpica/dbcmds.c b/sys/contrib/dev/acpica/dbcmds.c index ec0596c..d33cbf3 100644 --- a/sys/contrib/dev/acpica/dbcmds.c +++ b/sys/contrib/dev/acpica/dbcmds.c @@ -1,7 +1,7 @@ /******************************************************************************* * * Module Name: dbcmds - debug commands and output routines - * $Revision: 90 $ + * $Revision: 88 $ * ******************************************************************************/ @@ -412,6 +412,7 @@ AcpiDbSetMethodCallBreakpoint ( return; } + AcpiGbl_StepToNextCall = TRUE; } @@ -449,7 +450,9 @@ AcpiDbDisassembleAml ( NumStatements = ACPI_STRTOUL (Statements, NULL, 0); } +#ifdef ACPI_DISASSEMBLER AcpiDmDisassemble (NULL, Op, NumStatements); +#endif } @@ -1052,7 +1055,7 @@ ErrorExit: * * RETURN: None * - * DESCRIPTION: Display the resource objects associated with a device. + * DESCRIPTION: * ******************************************************************************/ @@ -1219,7 +1222,7 @@ AcpiDbIntegrityWalk ( Node, ACPI_GET_DESCRIPTOR_TYPE (Node)); } - if (Node->Type > ACPI_TYPE_LOCAL_MAX) + if (Node->Type > INTERNAL_TYPE_MAX) { AcpiOsPrintf ("Invalid Object Type for Node %p, Type = %X\n", Node, Node->Type); |