aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/acutils.h
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2012-12-19 00:38:07 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2013-01-10 06:36:18 -0500
commit886308ecea88236e88fba2a7f50d8ce22a40c4fe (patch)
tree74109d1b4466cc70a9a3e9a662165fd84aa90985 /drivers/acpi/acpica/acutils.h
parent0e770b3263816b4445e2c855f641b172aa26291a (diff)
ACPICA: Debugger: Major update for the Disassemble<method> command.
This command was downreved and did not properly disassemble control methods with any reasonable complexity. This fix brings the command up to the same level as the rest of the disassembler. Adds one new file, dmdeferred.c, which is existing code that is now common with the main disassembler and the debugger disassembl command. Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/acutils.h')
-rw-r--r--drivers/acpi/acpica/acutils.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/acutils.h b/drivers/acpi/acpica/acutils.h
index b0f5f92b674a..6e51d193c3eb 100644
--- a/drivers/acpi/acpica/acutils.h
+++ b/drivers/acpi/acpica/acutils.h
@@ -535,12 +535,15 @@ acpi_ut_display_init_pathname(u8 type,
535 * utresrc 535 * utresrc
536 */ 536 */
537acpi_status 537acpi_status
538acpi_ut_walk_aml_resources(u8 *aml, 538acpi_ut_walk_aml_resources(struct acpi_walk_state *walk_state,
539 u8 *aml,
539 acpi_size aml_length, 540 acpi_size aml_length,
540 acpi_walk_aml_callback user_function, 541 acpi_walk_aml_callback user_function,
541 void **context); 542 void **context);
542 543
543acpi_status acpi_ut_validate_resource(void *aml, u8 *return_index); 544acpi_status
545acpi_ut_validate_resource(struct acpi_walk_state *walk_state,
546 void *aml, u8 *return_index);
544 547
545u32 acpi_ut_get_descriptor_length(void *aml); 548u32 acpi_ut_get_descriptor_length(void *aml);
546 549