diff options
Diffstat (limited to 'drivers/acpi/acpica/actables.h')
-rw-r--r-- | drivers/acpi/acpica/actables.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/drivers/acpi/acpica/actables.h b/drivers/acpi/acpica/actables.h index 5fa4b2027697..c569eab774b1 100644 --- a/drivers/acpi/acpica/actables.h +++ b/drivers/acpi/acpica/actables.h | |||
@@ -72,14 +72,25 @@ acpi_tb_find_table(char *signature, | |||
72 | */ | 72 | */ |
73 | acpi_status acpi_tb_resize_root_table_list(void); | 73 | acpi_status acpi_tb_resize_root_table_list(void); |
74 | 74 | ||
75 | acpi_status acpi_tb_verify_table(struct acpi_table_desc *table_desc); | 75 | acpi_status acpi_tb_validate_table(struct acpi_table_desc *table_desc); |
76 | 76 | ||
77 | struct acpi_table_header *acpi_tb_table_override(struct acpi_table_header | 77 | void acpi_tb_invalidate_table(struct acpi_table_desc *table_desc); |
78 | |||
79 | struct acpi_table_header *acpi_tb_override_table(struct acpi_table_header | ||
78 | *table_header, | 80 | *table_header, |
79 | struct acpi_table_desc | 81 | struct acpi_table_desc |
80 | *table_desc); | 82 | *table_desc); |
81 | 83 | ||
82 | acpi_status | 84 | acpi_status |
85 | acpi_tb_acquire_table(struct acpi_table_desc *table_desc, | ||
86 | struct acpi_table_header **table_ptr, | ||
87 | u32 *table_length, u8 *table_flags); | ||
88 | |||
89 | void | ||
90 | acpi_tb_release_table(struct acpi_table_header *table, | ||
91 | u32 table_length, u8 table_flags); | ||
92 | |||
93 | acpi_status | ||
83 | acpi_tb_add_table(struct acpi_table_desc *table_desc, u32 *table_index); | 94 | acpi_tb_add_table(struct acpi_table_desc *table_desc, u32 *table_index); |
84 | 95 | ||
85 | acpi_status | 96 | acpi_status |
@@ -87,7 +98,7 @@ acpi_tb_store_table(acpi_physical_address address, | |||
87 | struct acpi_table_header *table, | 98 | struct acpi_table_header *table, |
88 | u32 length, u8 flags, u32 *table_index); | 99 | u32 length, u8 flags, u32 *table_index); |
89 | 100 | ||
90 | void acpi_tb_delete_table(struct acpi_table_desc *table_desc); | 101 | void acpi_tb_uninstall_table(struct acpi_table_desc *table_desc); |
91 | 102 | ||
92 | void acpi_tb_terminate(void); | 103 | void acpi_tb_terminate(void); |
93 | 104 | ||