diff options
Diffstat (limited to 'include/acpi/acpixf.h')
-rw-r--r-- | include/acpi/acpixf.h | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index 982110134672..26a92fc28a59 100644 --- a/include/acpi/acpixf.h +++ b/include/acpi/acpixf.h | |||
@@ -6,7 +6,7 @@ | |||
6 | *****************************************************************************/ | 6 | *****************************************************************************/ |
7 | 7 | ||
8 | /* | 8 | /* |
9 | * Copyright (C) 2000 - 2011, Intel Corp. | 9 | * Copyright (C) 2000 - 2012, Intel Corp. |
10 | * All rights reserved. | 10 | * All rights reserved. |
11 | * | 11 | * |
12 | * Redistribution and use in source and binary forms, with or without | 12 | * Redistribution and use in source and binary forms, with or without |
@@ -47,7 +47,7 @@ | |||
47 | 47 | ||
48 | /* Current ACPICA subsystem version in YYYYMMDD format */ | 48 | /* Current ACPICA subsystem version in YYYYMMDD format */ |
49 | 49 | ||
50 | #define ACPI_CA_VERSION 0x20120320 | 50 | #define ACPI_CA_VERSION 0x20120711 |
51 | 51 | ||
52 | #include "acconfig.h" | 52 | #include "acconfig.h" |
53 | #include "actypes.h" | 53 | #include "actypes.h" |
@@ -154,15 +154,20 @@ void *acpi_callocate(u32 size); | |||
154 | void acpi_free(void *address); | 154 | void acpi_free(void *address); |
155 | 155 | ||
156 | /* | 156 | /* |
157 | * ACPI table manipulation interfaces | 157 | * ACPI table load/unload interfaces |
158 | */ | 158 | */ |
159 | acpi_status acpi_reallocate_root_table(void); | 159 | acpi_status acpi_load_table(struct acpi_table_header *table); |
160 | 160 | ||
161 | acpi_status acpi_find_root_pointer(acpi_size *rsdp_address); | 161 | acpi_status acpi_unload_parent_table(acpi_handle object); |
162 | 162 | ||
163 | acpi_status acpi_load_tables(void); | 163 | acpi_status acpi_load_tables(void); |
164 | 164 | ||
165 | acpi_status acpi_load_table(struct acpi_table_header *table_ptr); | 165 | /* |
166 | * ACPI table manipulation interfaces | ||
167 | */ | ||
168 | acpi_status acpi_reallocate_root_table(void); | ||
169 | |||
170 | acpi_status acpi_find_root_pointer(acpi_size *rsdp_address); | ||
166 | 171 | ||
167 | acpi_status acpi_unload_table_id(acpi_owner_id id); | 172 | acpi_status acpi_unload_table_id(acpi_owner_id id); |
168 | 173 | ||
@@ -486,11 +491,11 @@ acpi_get_sleep_type_data(u8 sleep_state, u8 * slp_typ_a, u8 * slp_typ_b); | |||
486 | 491 | ||
487 | acpi_status acpi_enter_sleep_state_prep(u8 sleep_state); | 492 | acpi_status acpi_enter_sleep_state_prep(u8 sleep_state); |
488 | 493 | ||
489 | acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state, u8 flags); | 494 | acpi_status asmlinkage acpi_enter_sleep_state(u8 sleep_state); |
490 | 495 | ||
491 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void)) | 496 | ACPI_HW_DEPENDENT_RETURN_STATUS(acpi_status asmlinkage acpi_enter_sleep_state_s4bios(void)) |
492 | 497 | ||
493 | acpi_status acpi_leave_sleep_state_prep(u8 sleep_state, u8 flags); | 498 | acpi_status acpi_leave_sleep_state_prep(u8 sleep_state); |
494 | 499 | ||
495 | acpi_status acpi_leave_sleep_state(u8 sleep_state); | 500 | acpi_status acpi_leave_sleep_state(u8 sleep_state); |
496 | 501 | ||
@@ -529,6 +534,14 @@ void ACPI_INTERNAL_VAR_XFACE | |||
529 | acpi_info(const char *module_name, | 534 | acpi_info(const char *module_name, |
530 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); | 535 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); |
531 | 536 | ||
537 | void ACPI_INTERNAL_VAR_XFACE | ||
538 | acpi_bios_error(const char *module_name, | ||
539 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); | ||
540 | |||
541 | void ACPI_INTERNAL_VAR_XFACE | ||
542 | acpi_bios_warning(const char *module_name, | ||
543 | u32 line_number, const char *format, ...) ACPI_PRINTF_LIKE(3); | ||
544 | |||
532 | /* | 545 | /* |
533 | * Debug output | 546 | * Debug output |
534 | */ | 547 | */ |