diff options
author | Bob Moore <robert.moore@intel.com> | 2012-02-14 18:57:13 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-03-22 01:45:05 -0400 |
commit | 72a8887a356076dfa39bd6691c52446f90a50480 (patch) | |
tree | 6cdf2e3f228b8482273029066554d57c7095a405 /include/acpi | |
parent | 709585765734e90d9fe0a2dc9c6f4e49eff5c6ec (diff) | |
download | op-kernel-dev-72a8887a356076dfa39bd6691c52446f90a50480.zip op-kernel-dev-72a8887a356076dfa39bd6691c52446f90a50480.tar.gz |
ACPICA: Add table-driven dispatch for sleep/wake functions
Simplifies the code, especially the compile-time
ACPI_REDUCED_HARDWARE option.
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 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index 48c4d5f..3496158 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h @@ -788,6 +788,15 @@ typedef u8 acpi_adr_space_type; #define ACPI_ENABLE_EVENT 1 #define ACPI_DISABLE_EVENT 0 +/* Sleep function dispatch */ + +typedef acpi_status(*ACPI_SLEEP_FUNCTION) (u8 sleep_state); + +struct acpi_sleep_functions { + ACPI_SLEEP_FUNCTION legacy_function; + ACPI_SLEEP_FUNCTION extended_function; +}; + /* * External ACPI object definition */ |