diff options
author | Bob Moore <robert.moore@intel.com> | 2011-11-16 00:39:07 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-01-17 03:36:29 -0500 |
commit | 9ce81784c9c0396a6a6be05248928a71134fe60b (patch) | |
tree | cccb8fc3a3514276ed0b1801f7bb26ba2319d62d /include/acpi | |
parent | ffef68273b6278e98a99dd4051671d4854b20fe0 (diff) |
ACPI 5.0: Implement Connection() and AccessAs() changes
Support within the interpreter and operation region dispatch.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/actypes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index ed73f6705c86..d088c902d6bd 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h | |||
@@ -957,6 +957,14 @@ acpi_status(*acpi_adr_space_handler) (u32 function, | |||
957 | 957 | ||
958 | #define ACPI_DEFAULT_HANDLER NULL | 958 | #define ACPI_DEFAULT_HANDLER NULL |
959 | 959 | ||
960 | /* Special Context data for generic_serial_bus/general_purpose_io (ACPI 5.0) */ | ||
961 | |||
962 | struct acpi_connection_info { | ||
963 | u8 *connection; | ||
964 | u16 length; | ||
965 | u8 access_length; | ||
966 | }; | ||
967 | |||
960 | typedef | 968 | typedef |
961 | acpi_status(*acpi_adr_space_setup) (acpi_handle region_handle, | 969 | acpi_status(*acpi_adr_space_setup) (acpi_handle region_handle, |
962 | u32 function, | 970 | u32 function, |