diff options
Diffstat (limited to 'drivers/acpi/acpica/aclocal.h')
-rw-r--r-- | drivers/acpi/acpica/aclocal.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/aclocal.h b/drivers/acpi/acpica/aclocal.h index 2ddd61d07a06..d3b6f29cc41b 100644 --- a/drivers/acpi/acpica/aclocal.h +++ b/drivers/acpi/acpica/aclocal.h | |||
@@ -630,6 +630,15 @@ union acpi_generic_state { | |||
630 | 630 | ||
631 | typedef acpi_status(*ACPI_EXECUTE_OP) (struct acpi_walk_state * walk_state); | 631 | typedef acpi_status(*ACPI_EXECUTE_OP) (struct acpi_walk_state * walk_state); |
632 | 632 | ||
633 | /* Address Range info block */ | ||
634 | |||
635 | struct acpi_address_range { | ||
636 | struct acpi_address_range *next; | ||
637 | struct acpi_namespace_node *region_node; | ||
638 | acpi_physical_address start_address; | ||
639 | acpi_physical_address end_address; | ||
640 | }; | ||
641 | |||
633 | /***************************************************************************** | 642 | /***************************************************************************** |
634 | * | 643 | * |
635 | * Parser typedefs and structs | 644 | * Parser typedefs and structs |