diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2015-04-09 23:08:47 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2015-04-09 23:08:47 +0000 |
| commit | d29c30140bd8ea81e0530ad3975c977891ab9275 (patch) | |
| tree | 7a91c0da98a89b4b10beda84d027d2c779673064 /source/components/debugger | |
| parent | 2872953d4a9c9c4e0fc0b9ab37d0e962909625a0 (diff) | |
Notes
Diffstat (limited to 'source/components/debugger')
| -rw-r--r-- | source/components/debugger/dbmethod.c | 4 | ||||
| -rw-r--r-- | source/components/debugger/dbxface.c | 13 |
2 files changed, 7 insertions, 10 deletions
diff --git a/source/components/debugger/dbmethod.c b/source/components/debugger/dbmethod.c index 3ca1e98c7477..c658d6ade87a 100644 --- a/source/components/debugger/dbmethod.c +++ b/source/components/debugger/dbmethod.c @@ -394,9 +394,9 @@ AcpiDbDisassembleMethod ( /* Now we can disassemble the method */ - AcpiGbl_DbOpt_verbose = FALSE; + AcpiGbl_DbOpt_Verbose = FALSE; AcpiDmDisassemble (NULL, Op, 0); - AcpiGbl_DbOpt_verbose = TRUE; + AcpiGbl_DbOpt_Verbose = TRUE; AcpiPsDeleteParseTree (Op); diff --git a/source/components/debugger/dbxface.c b/source/components/debugger/dbxface.c index 64b8402bb6ee..04b69adf97a2 100644 --- a/source/components/debugger/dbxface.c +++ b/source/components/debugger/dbxface.c @@ -422,11 +422,9 @@ AcpiDbInitialize ( AcpiGbl_DbConsoleDebugLevel = ACPI_NORMAL_DEFAULT | ACPI_LV_TABLES; AcpiGbl_DbOutputFlags = ACPI_DB_CONSOLE_OUTPUT; - AcpiGbl_DbOpt_tables = FALSE; - AcpiGbl_DbOpt_disasm = FALSE; - AcpiGbl_DbOpt_stats = FALSE; - AcpiGbl_DbOpt_verbose = TRUE; - AcpiGbl_DbOpt_ini_methods = TRUE; + AcpiGbl_DbOpt_Disasm = FALSE; + AcpiGbl_DbOpt_Verbose = TRUE; + AcpiGbl_DbOpt_NoIniMethods = FALSE; AcpiGbl_DbBuffer = AcpiOsAllocate (ACPI_DEBUG_BUFFER_SIZE); if (!AcpiGbl_DbBuffer) @@ -474,10 +472,9 @@ AcpiDbInitialize ( } } - if (!AcpiGbl_DbOpt_verbose) + if (!AcpiGbl_DbOpt_Verbose) { - AcpiGbl_DbOpt_disasm = TRUE; - AcpiGbl_DbOpt_stats = FALSE; + AcpiGbl_DbOpt_Disasm = TRUE; } return_ACPI_STATUS (AE_OK); |
