diff options
author | Lv Zheng <lv.zheng@intel.com> | 2015-08-24 22:30:27 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-08-25 17:11:33 -0400 |
commit | 1bdc63bf05096afac4b1e5361417fb730d77dfc7 (patch) | |
tree | f22ef65022588896cc6940588e4637c81e80f23f | |
parent | f8fb4c383e7342731b77693edde9c6ea02ab0365 (diff) |
ACPICA: Disassembler: Cleanup acpi_gbl_db_opt_disasm
ACPICA commit 969989cf7f85e2a2a0cd048cd25fc706246a48a2
This patch cleans up the following global variable - acpi_gbl_db_opt_disasm:
The setting is used to control the full disassembly feature for iasl. ACPI
debugger (acpiexec) shall have nothing to do with it. Actually, acpiexec
never links to ad_aml_disassemble().
This patch thus renames this global option to acpi_gbl_dm_opt_disasm and
removes all acpiexec and debugger references on it. Lv Zheng.
This patch doesn't affect Linux kernel.
Link: https://github.com/acpica/acpica/commit/969989cf
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/acpi/acpica/acglobal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/acglobal.h b/drivers/acpi/acpica/acglobal.h index 03c443b87c76..0007eb7f3a85 100644 --- a/drivers/acpi/acpica/acglobal.h +++ b/drivers/acpi/acpica/acglobal.h | |||
@@ -313,7 +313,7 @@ ACPI_INIT_GLOBAL(u8, acpi_gbl_ignore_noop_operator, FALSE); | |||
313 | ACPI_INIT_GLOBAL(u8, acpi_gbl_cstyle_disassembly, TRUE); | 313 | ACPI_INIT_GLOBAL(u8, acpi_gbl_cstyle_disassembly, TRUE); |
314 | ACPI_INIT_GLOBAL(u8, acpi_gbl_force_aml_disassembly, FALSE); | 314 | ACPI_INIT_GLOBAL(u8, acpi_gbl_force_aml_disassembly, FALSE); |
315 | 315 | ||
316 | ACPI_GLOBAL(u8, acpi_gbl_db_opt_disasm); | 316 | ACPI_GLOBAL(u8, acpi_gbl_dm_opt_disasm); |
317 | ACPI_GLOBAL(u8, acpi_gbl_dm_opt_listing); | 317 | ACPI_GLOBAL(u8, acpi_gbl_dm_opt_listing); |
318 | ACPI_GLOBAL(u8, acpi_gbl_db_opt_verbose); | 318 | ACPI_GLOBAL(u8, acpi_gbl_db_opt_verbose); |
319 | ACPI_GLOBAL(u8, acpi_gbl_num_external_methods); | 319 | ACPI_GLOBAL(u8, acpi_gbl_num_external_methods); |