aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2007-02-02 11:48:20 -0500
committerLen Brown <len.brown@intel.com>2007-02-02 21:14:24 -0500
commite56b638bbee3c17b0dee39495bd15afe64db1b94 (patch)
tree07e23f744a9284394ceb6e259c6e522561d19074 /drivers/acpi
parent765ec20180fb70b4ee9d730167b2a0b76879f791 (diff)
ACPICA: Update comments in tbfadt.c
Signed-off-by: Alexey Starikovskiy <alexey.y.starikovskiy@intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r--drivers/acpi/tables/tbfadt.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/acpi/tables/tbfadt.c b/drivers/acpi/tables/tbfadt.c
index 2336a72fab40..62485d32fcd6 100644
--- a/drivers/acpi/tables/tbfadt.c
+++ b/drivers/acpi/tables/tbfadt.c
@@ -195,8 +195,8 @@ void acpi_tb_parse_fadt(acpi_native_uint table_index, u8 flags)
195 * 195 *
196 * DESCRIPTION: Converts all versions of the FADT to a common internal format. 196 * DESCRIPTION: Converts all versions of the FADT to a common internal format.
197 * 197 *
198 * NOTE: acpi_gbl_FADT must be of size (struct acpi_table_fadt), and must contain 198 * NOTE: acpi_gbl_FADT must be of size (struct acpi_table_fadt),
199 * a copy of the actual FADT. 199 * and must contain a copy of the actual FADT.
200 * 200 *
201 * ACPICA will use the "X" fields of the FADT for all addresses. 201 * ACPICA will use the "X" fields of the FADT for all addresses.
202 * 202 *
@@ -292,9 +292,10 @@ static void acpi_tb_convert_fadt(void)
292 * 292 *
293 * PARAMETERS: None 293 * PARAMETERS: None
294 * 294 *
295 * RETURN: Status 295 * RETURN: None
296 * 296 *
297 * DESCRIPTION: Validate various ACPI registers in the FADT 297 * DESCRIPTION: Validate various ACPI registers in the FADT. For problems,
298 * issue a message, but no status is returned.
298 * 299 *
299 ******************************************************************************/ 300 ******************************************************************************/
300 301
@@ -375,6 +376,6 @@ static void acpi_tb_validate_fadt(void)
375static void acpi_tb_fadt_register_error(char *register_name, u32 value) 376static void acpi_tb_fadt_register_error(char *register_name, u32 value)
376{ 377{
377 378
378 ACPI_WARNING((AE_INFO, "Invalid FADT value \"%s\" = %X", 379 ACPI_WARNING((AE_INFO, "Invalid FADT value in field \"%s\" = %X",
379 register_name, value)); 380 register_name, value));
380} 381}