aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/tbfadt.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/acpica/tbfadt.c')
-rw-r--r--drivers/acpi/acpica/tbfadt.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/acpi/acpica/tbfadt.c b/drivers/acpi/acpica/tbfadt.c
index 3636e4f8fb73..4b683ccd4a94 100644
--- a/drivers/acpi/acpica/tbfadt.c
+++ b/drivers/acpi/acpica/tbfadt.c
@@ -172,7 +172,6 @@ acpi_tb_init_generic_address(struct acpi_generic_address *generic_address,
172 * FUNCTION: acpi_tb_parse_fadt 172 * FUNCTION: acpi_tb_parse_fadt
173 * 173 *
174 * PARAMETERS: table_index - Index for the FADT 174 * PARAMETERS: table_index - Index for the FADT
175 * Flags - Flags
176 * 175 *
177 * RETURN: None 176 * RETURN: None
178 * 177 *
@@ -181,7 +180,7 @@ acpi_tb_init_generic_address(struct acpi_generic_address *generic_address,
181 * 180 *
182 ******************************************************************************/ 181 ******************************************************************************/
183 182
184void acpi_tb_parse_fadt(u32 table_index, u8 flags) 183void acpi_tb_parse_fadt(u32 table_index)
185{ 184{
186 u32 length; 185 u32 length;
187 struct acpi_table_header *table; 186 struct acpi_table_header *table;
@@ -219,10 +218,10 @@ void acpi_tb_parse_fadt(u32 table_index, u8 flags)
219 /* Obtain the DSDT and FACS tables via their addresses within the FADT */ 218 /* Obtain the DSDT and FACS tables via their addresses within the FADT */
220 219
221 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xdsdt, 220 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xdsdt,
222 flags, ACPI_SIG_DSDT, ACPI_TABLE_INDEX_DSDT); 221 ACPI_SIG_DSDT, ACPI_TABLE_INDEX_DSDT);
223 222
224 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xfacs, 223 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xfacs,
225 flags, ACPI_SIG_FACS, ACPI_TABLE_INDEX_FACS); 224 ACPI_SIG_FACS, ACPI_TABLE_INDEX_FACS);
226} 225}
227 226
228/******************************************************************************* 227/*******************************************************************************