|
@@ -74,9 +74,10 @@ enum acpi_address_range_id {
|
|
|
|
|
|
/* Table Handlers */
|
|
|
|
|
|
-typedef int (*acpi_table_handler) (struct acpi_table_header *table);
|
|
|
+typedef int (*acpi_tbl_table_handler)(struct acpi_table_header *table);
|
|
|
|
|
|
-typedef int (*acpi_table_entry_handler) (struct acpi_subtable_header *header, const unsigned long end);
|
|
|
+typedef int (*acpi_tbl_entry_handler)(struct acpi_subtable_header *header,
|
|
|
+ const unsigned long end);
|
|
|
|
|
|
#ifdef CONFIG_ACPI_INITRD_TABLE_OVERRIDE
|
|
|
void acpi_initrd_override(void *data, size_t size);
|
|
@@ -95,10 +96,14 @@ int acpi_mps_check (void);
|
|
|
int acpi_numa_init (void);
|
|
|
|
|
|
int acpi_table_init (void);
|
|
|
-int acpi_table_parse (char *id, acpi_table_handler handler);
|
|
|
+int acpi_table_parse(char *id, acpi_tbl_table_handler handler);
|
|
|
int __init acpi_table_parse_entries(char *id, unsigned long table_size,
|
|
|
- int entry_id, acpi_table_entry_handler handler, unsigned int max_entries);
|
|
|
-int acpi_table_parse_madt (enum acpi_madt_type id, acpi_table_entry_handler handler, unsigned int max_entries);
|
|
|
+ int entry_id,
|
|
|
+ acpi_tbl_entry_handler handler,
|
|
|
+ unsigned int max_entries);
|
|
|
+int acpi_table_parse_madt(enum acpi_madt_type id,
|
|
|
+ acpi_tbl_entry_handler handler,
|
|
|
+ unsigned int max_entries);
|
|
|
int acpi_parse_mcfg (struct acpi_table_header *header);
|
|
|
void acpi_table_print_madt_entry (struct acpi_subtable_header *madt);
|
|
|
|