aboutsummaryrefslogtreecommitdiffstats
path: root/xen/drivers/acpi
diff options
context:
space:
mode:
authorBob Moore <robert.moore@intel.com>2013-02-22 11:43:59 +0100
committerJan Beulich <jbeulich@suse.com>2013-02-22 11:43:59 +0100
commitf89ba1a35412c78f26ff91753f69714714cf283f (patch)
treef4d35369120f50f0836969611e634e4e81f2ddf8 /xen/drivers/acpi
parent17281aea1a9a10f1ee165c6e6a2921a67b7b1df2 (diff)
downloadxen-f89ba1a35412c78f26ff91753f69714714cf283f.tar.gz
xen-f89ba1a35412c78f26ff91753f69714714cf283f.tar.bz2
xen-f89ba1a35412c78f26ff91753f69714714cf283f.zip
ACPI 5.0: Basic support for FADT version 5
Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Jan Beulich <jbeulich@suse.com> Acked-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/drivers/acpi')
-rw-r--r--xen/drivers/acpi/tables/tbfadt.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/xen/drivers/acpi/tables/tbfadt.c b/xen/drivers/acpi/tables/tbfadt.c
index fa10d162f4..e3644f4927 100644
--- a/xen/drivers/acpi/tables/tbfadt.c
+++ b/xen/drivers/acpi/tables/tbfadt.c
@@ -222,12 +222,13 @@ void __init acpi_tb_create_local_fadt(struct acpi_table_header *table, u32 lengt
/*
* Check if the FADT is larger than the largest table that we expect
- * (the ACPI 2.0/3.0 version). If so, truncate the table, and issue
+ * (the ACPI 5.0 version). If so, truncate the table, and issue
* a warning.
*/
if (length > sizeof(struct acpi_table_fadt)) {
ACPI_WARNING((AE_INFO,
- "FADT (revision %u) is longer than ACPI 2.0 version, truncating length 0x%X to 0x%zX",
+ "FADT (revision %u) is longer than ACPI 5.0 version,"
+ " truncating length %u to %zu",
table->revision, (unsigned)length,
sizeof(struct acpi_table_fadt)));
}