diff options
author | Bob Moore <robert.moore@intel.com> | 2009-02-03 01:41:03 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-26 16:38:20 -0400 |
commit | 97cbb7d196845ec9a6c0e3cc33ec20503f8c4e73 (patch) | |
tree | 21f2003e2da305ae1106a6135aca052393fc9567 /drivers/acpi/acpica/tbfadt.c | |
parent | ac5f98db7be34cefc244026f882cf030debb7431 (diff) |
ACPICA: Remove extraneous parameter in table manager
Removed the Flags parameter from several internal functions since
it was not being used.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/tbfadt.c')
-rw-r--r-- | drivers/acpi/acpica/tbfadt.c | 7 |
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 | ||
184 | void acpi_tb_parse_fadt(u32 table_index, u8 flags) | 183 | void 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 | /******************************************************************************* |