diff options
author | Erik Schmauss <erik.schmauss@intel.com> | 2019-10-26 00:36:55 +0300 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2019-10-29 00:12:46 +0300 |
commit | 5fd033288a86676045d9e16243dfc5f988013371 (patch) | |
tree | 0e7a05df843d86e490aa7ed200f4d6f88c5b09e0 /drivers/acpi/acpica/acstruct.h | |
parent | efcf9456c81cd06a9d973ab042bf768a27c5bb43 (diff) | |
download | linux-5fd033288a86676045d9e16243dfc5f988013371.tar.xz |
ACPICA: debugger: add command to dump all fields of particular subtype
In acpiexec, this can be invoked by typing "fields" followed by a
number representing the address space ID of that field.
Signed-off-by: Erik Schmauss <erik.schmauss@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/acstruct.h')
-rw-r--r-- | drivers/acpi/acpica/acstruct.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/acstruct.h b/drivers/acpi/acpica/acstruct.h index 218ff4c8b817..2043dff370b1 100644 --- a/drivers/acpi/acpica/acstruct.h +++ b/drivers/acpi/acpica/acstruct.h @@ -192,6 +192,16 @@ struct acpi_device_walk_info { u32 num_INI; }; +/* Info used by Acpi acpi_db_display_fields */ + +struct acpi_region_walk_info { + u32 debug_level; + u32 count; + acpi_owner_id owner_id; + u8 display_type; + u32 address_space_id; +}; + /* TBD: [Restructure] Merge with struct above */ struct acpi_walk_info { |