diff options
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/acpixf.h | 2 | ||||
-rw-r--r-- | include/acpi/actables.h | 8 |
2 files changed, 3 insertions, 7 deletions
diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h index 9c26400acc4d..918280e823da 100644 --- a/include/acpi/acpixf.h +++ b/include/acpi/acpixf.h | |||
@@ -109,7 +109,7 @@ acpi_status acpi_unload_table_id(acpi_owner_id id); | |||
109 | acpi_status | 109 | acpi_status |
110 | acpi_get_table_header(acpi_string signature, | 110 | acpi_get_table_header(acpi_string signature, |
111 | acpi_native_uint instance, | 111 | acpi_native_uint instance, |
112 | struct acpi_table_header **out_table_header); | 112 | struct acpi_table_header *out_table_header); |
113 | 113 | ||
114 | acpi_status | 114 | acpi_status |
115 | acpi_get_table(acpi_string signature, | 115 | acpi_get_table(acpi_string signature, |
diff --git a/include/acpi/actables.h b/include/acpi/actables.h index 4079f8a0ea22..5ef1b6939370 100644 --- a/include/acpi/actables.h +++ b/include/acpi/actables.h | |||
@@ -69,7 +69,7 @@ acpi_status acpi_tb_resize_root_table_list(void); | |||
69 | acpi_status acpi_tb_verify_table(struct acpi_table_desc *table_desc); | 69 | acpi_status acpi_tb_verify_table(struct acpi_table_desc *table_desc); |
70 | 70 | ||
71 | acpi_status | 71 | acpi_status |
72 | acpi_tb_add_table(struct acpi_table_header *table, | 72 | acpi_tb_add_table(struct acpi_table_desc *table_desc, |
73 | acpi_native_uint * table_index); | 73 | acpi_native_uint * table_index); |
74 | 74 | ||
75 | acpi_status | 75 | acpi_status |
@@ -77,7 +77,7 @@ acpi_tb_store_table(acpi_physical_address address, | |||
77 | struct acpi_table_header *table, | 77 | struct acpi_table_header *table, |
78 | u32 length, u8 flags, acpi_native_uint * table_index); | 78 | u32 length, u8 flags, acpi_native_uint * table_index); |
79 | 79 | ||
80 | void acpi_tb_delete_table(acpi_native_uint table_index); | 80 | void acpi_tb_delete_table(struct acpi_table_desc *table_desc); |
81 | 81 | ||
82 | void acpi_tb_terminate(void); | 82 | void acpi_tb_terminate(void); |
83 | 83 | ||
@@ -113,8 +113,4 @@ acpi_tb_install_table(acpi_physical_address address, | |||
113 | acpi_status | 113 | acpi_status |
114 | acpi_tb_parse_root_table(acpi_physical_address rsdp_address, u8 flags); | 114 | acpi_tb_parse_root_table(acpi_physical_address rsdp_address, u8 flags); |
115 | 115 | ||
116 | void *acpi_tb_map(acpi_physical_address address, u32 length, u32 flags); | ||
117 | |||
118 | void acpi_tb_unmap(void *pointer, u32 length, u32 flags); | ||
119 | |||
120 | #endif /* __ACTABLES_H__ */ | 116 | #endif /* __ACTABLES_H__ */ |