diff options
author | Bob Moore <robert.moore@intel.com> | 2011-11-16 13:39:07 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-01-17 03:36:29 -0500 |
commit | 9ce81784c9c0396a6a6be05248928a71134fe60b (patch) | |
tree | cccb8fc3a3514276ed0b1801f7bb26ba2319d62d /include/acpi | |
parent | ffef68273b6278e98a99dd4051671d4854b20fe0 (diff) | |
download | op-kernel-dev-9ce81784c9c0396a6a6be05248928a71134fe60b.zip op-kernel-dev-9ce81784c9c0396a6a6be05248928a71134fe60b.tar.gz |
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 ed73f67..d088c90 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h @@ -957,6 +957,14 @@ acpi_status(*acpi_adr_space_handler) (u32 function, #define ACPI_DEFAULT_HANDLER NULL +/* Special Context data for generic_serial_bus/general_purpose_io (ACPI 5.0) */ + +struct acpi_connection_info { + u8 *connection; + u16 length; + u8 access_length; +}; + typedef acpi_status(*acpi_adr_space_setup) (acpi_handle region_handle, u32 function, |