diff options
-rw-r--r-- | drivers/acpi/tables.c | 16 | ||||
-rw-r--r-- | include/linux/acpi.h | 4 |
2 files changed, 0 insertions, 20 deletions
diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c index 2604189d6cd1..0dae722ab2ec 100644 --- a/drivers/acpi/tables.c +++ b/drivers/acpi/tables.c | |||
@@ -311,22 +311,6 @@ acpi_parse_entries_array(char *id, unsigned long table_size, | |||
311 | } | 311 | } |
312 | 312 | ||
313 | int __init | 313 | int __init |
314 | acpi_parse_entries(char *id, | ||
315 | unsigned long table_size, | ||
316 | acpi_tbl_entry_handler handler, | ||
317 | struct acpi_table_header *table_header, | ||
318 | int entry_id, unsigned int max_entries) | ||
319 | { | ||
320 | struct acpi_subtable_proc proc = { | ||
321 | .id = entry_id, | ||
322 | .handler = handler, | ||
323 | }; | ||
324 | |||
325 | return acpi_parse_entries_array(id, table_size, table_header, | ||
326 | &proc, 1, max_entries); | ||
327 | } | ||
328 | |||
329 | int __init | ||
330 | acpi_table_parse_entries_array(char *id, | 314 | acpi_table_parse_entries_array(char *id, |
331 | unsigned long table_size, | 315 | unsigned long table_size, |
332 | struct acpi_subtable_proc *proc, int proc_num, | 316 | struct acpi_subtable_proc *proc, int proc_num, |
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 9b05886f9773..83abbfceabad 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h | |||
@@ -233,10 +233,6 @@ int acpi_numa_init (void); | |||
233 | 233 | ||
234 | int acpi_table_init (void); | 234 | int acpi_table_init (void); |
235 | int acpi_table_parse(char *id, acpi_tbl_table_handler handler); | 235 | int acpi_table_parse(char *id, acpi_tbl_table_handler handler); |
236 | int __init acpi_parse_entries(char *id, unsigned long table_size, | ||
237 | acpi_tbl_entry_handler handler, | ||
238 | struct acpi_table_header *table_header, | ||
239 | int entry_id, unsigned int max_entries); | ||
240 | int __init acpi_table_parse_entries(char *id, unsigned long table_size, | 236 | int __init acpi_table_parse_entries(char *id, unsigned long table_size, |
241 | int entry_id, | 237 | int entry_id, |
242 | acpi_tbl_entry_handler handler, | 238 | acpi_tbl_entry_handler handler, |