diff options
Diffstat (limited to 'include/acpi/acpixf.h')
-rw-r--r-- | include/acpi/acpixf.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index 6d8fb6fb35e0..030aeb556e6b 100644 --- a/include/acpi/acpixf.h +++ b/include/acpi/acpixf.h | |||
@@ -81,11 +81,6 @@ const char *acpi_format_exception(acpi_status exception); | |||
81 | 81 | ||
82 | acpi_status acpi_purge_cached_objects(void); | 82 | acpi_status acpi_purge_cached_objects(void); |
83 | 83 | ||
84 | #ifdef ACPI_FUTURE_USAGE | ||
85 | acpi_status | ||
86 | acpi_install_initialization_handler(acpi_init_handler handler, u32 function); | ||
87 | #endif | ||
88 | |||
89 | /* | 84 | /* |
90 | * ACPI Memory management | 85 | * ACPI Memory management |
91 | */ | 86 | */ |
@@ -195,9 +190,12 @@ acpi_status acpi_get_id(acpi_handle object, acpi_owner_id * out_type); | |||
195 | acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle); | 190 | acpi_status acpi_get_parent(acpi_handle object, acpi_handle * out_handle); |
196 | 191 | ||
197 | /* | 192 | /* |
198 | * Event handler interfaces | 193 | * Handler interfaces |
199 | */ | 194 | */ |
200 | acpi_status | 195 | acpi_status |
196 | acpi_install_initialization_handler(acpi_init_handler handler, u32 function); | ||
197 | |||
198 | acpi_status | ||
201 | acpi_install_fixed_event_handler(u32 acpi_event, | 199 | acpi_install_fixed_event_handler(u32 acpi_event, |
202 | acpi_event_handler handler, void *context); | 200 | acpi_event_handler handler, void *context); |
203 | 201 | ||
@@ -336,6 +334,10 @@ acpi_set_firmware_waking_vector(u32 physical_address); | |||
336 | acpi_status | 334 | acpi_status |
337 | acpi_set_firmware_waking_vector64(u64 physical_address); | 335 | acpi_set_firmware_waking_vector64(u64 physical_address); |
338 | 336 | ||
337 | acpi_status acpi_read(u32 *value, struct acpi_generic_address *reg); | ||
338 | |||
339 | acpi_status acpi_write(u32 value, struct acpi_generic_address *reg); | ||
340 | |||
339 | acpi_status | 341 | acpi_status |
340 | acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b); | 342 | acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b); |
341 | 343 | ||