|
@@ -385,14 +385,15 @@ void acpi_tb_create_local_fadt(struct acpi_table_header *table, u32 length)
|
|
{
|
|
{
|
|
/*
|
|
/*
|
|
* Check if the FADT is larger than the largest table that we expect
|
|
* Check if the FADT is larger than the largest table that we expect
|
|
- * (the ACPI 5.0 version). If so, truncate the table, and issue
|
|
|
|
- * a warning.
|
|
|
|
|
|
+ * (typically the current ACPI specification version). If so, truncate
|
|
|
|
+ * the table, and issue a warning.
|
|
*/
|
|
*/
|
|
if (length > sizeof(struct acpi_table_fadt)) {
|
|
if (length > sizeof(struct acpi_table_fadt)) {
|
|
ACPI_BIOS_WARNING((AE_INFO,
|
|
ACPI_BIOS_WARNING((AE_INFO,
|
|
- "FADT (revision %u) is longer than ACPI 5.0 version, "
|
|
|
|
|
|
+ "FADT (revision %u) is longer than %s length, "
|
|
"truncating length %u to %u",
|
|
"truncating length %u to %u",
|
|
- table->revision, length,
|
|
|
|
|
|
+ table->revision, ACPI_FADT_CONFORMANCE,
|
|
|
|
+ length,
|
|
(u32)sizeof(struct acpi_table_fadt)));
|
|
(u32)sizeof(struct acpi_table_fadt)));
|
|
}
|
|
}
|
|
|
|
|
|
@@ -646,9 +647,12 @@ static void acpi_tb_convert_fadt(void)
|
|
if ((address64->address && !length) ||
|
|
if ((address64->address && !length) ||
|
|
(!address64->address && length)) {
|
|
(!address64->address && length)) {
|
|
ACPI_BIOS_WARNING((AE_INFO,
|
|
ACPI_BIOS_WARNING((AE_INFO,
|
|
- "Optional FADT field %s has zero address or length: "
|
|
|
|
- "0x%8.8X%8.8X/0x%X",
|
|
|
|
- name,
|
|
|
|
|
|
+ "Optional FADT field %s has valid %s but zero %s: "
|
|
|
|
+ "0x%8.8X%8.8X/0x%X", name,
|
|
|
|
+ (length ? "Length" :
|
|
|
|
+ "Address"),
|
|
|
|
+ (length ? "Address" :
|
|
|
|
+ "Length"),
|
|
ACPI_FORMAT_UINT64
|
|
ACPI_FORMAT_UINT64
|
|
(address64->address),
|
|
(address64->address),
|
|
length));
|
|
length));
|