diff options
Diffstat (limited to 'drivers/acpi/tables/tbfadt.c')
-rw-r--r-- | drivers/acpi/tables/tbfadt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/tables/tbfadt.c b/drivers/acpi/tables/tbfadt.c index a6723a2215c2..807c7116e94b 100644 --- a/drivers/acpi/tables/tbfadt.c +++ b/drivers/acpi/tables/tbfadt.c | |||
@@ -222,8 +222,8 @@ void acpi_tb_create_local_fadt(struct acpi_table_header *table, u32 length) | |||
222 | */ | 222 | */ |
223 | if (length > sizeof(struct acpi_table_fadt)) { | 223 | if (length > sizeof(struct acpi_table_fadt)) { |
224 | ACPI_WARNING((AE_INFO, | 224 | ACPI_WARNING((AE_INFO, |
225 | "FADT (revision %u) is longer than ACPI 2.0 version, truncating length 0x%X to 0x%X", | 225 | "FADT (revision %u) is longer than ACPI 2.0 version, truncating length 0x%X to 0x%zX", |
226 | table->revision, length, | 226 | table->revision, (unsigned)length, |
227 | sizeof(struct acpi_table_fadt))); | 227 | sizeof(struct acpi_table_fadt))); |
228 | } | 228 | } |
229 | 229 | ||