aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi/actables.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/acpi/actables.h')
-rw-r--r--include/acpi/actables.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/acpi/actables.h b/include/acpi/actables.h
index 39df92e21a0d..e6ceb1819643 100644
--- a/include/acpi/actables.h
+++ b/include/acpi/actables.h
@@ -169,16 +169,24 @@ acpi_status
169acpi_tb_get_table_rsdt ( 169acpi_tb_get_table_rsdt (
170 void); 170 void);
171 171
172acpi_status
173acpi_tb_validate_rsdp (
174 struct rsdp_descriptor *rsdp);
175
172 176
173/* 177/*
174 * tbutils - common table utilities 178 * tbutils - common table utilities
175 */ 179 */
176acpi_status 180acpi_status
181acpi_tb_is_table_installed (
182 struct acpi_table_desc *new_table_desc);
183
184acpi_status
177acpi_tb_verify_table_checksum ( 185acpi_tb_verify_table_checksum (
178 struct acpi_table_header *table_header); 186 struct acpi_table_header *table_header);
179 187
180u8 188u8
181acpi_tb_checksum ( 189acpi_tb_generate_checksum (
182 void *buffer, 190 void *buffer,
183 u32 length); 191 u32 length);
184 192