Get rid of warning from printk arguments on 64 bit platforms.
Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]>
--- orig/drivers/acpi/tables/tbget.c
+++ new/drivers/acpi/tables/tbget.c
@@ -324,8 +324,9 @@ acpi_tb_get_this_table(struct acpi_point
if (header->length < sizeof(struct acpi_table_header)) {
ACPI_ERROR((AE_INFO,
- "Table length (%X) is smaller than minimum (%X)",
- header->length, sizeof(struct acpi_table_header)));
+ "Table length (%lx) is smaller than minimum (%zx)",
+ (unsigned long) header->length,
+ sizeof(struct acpi_table_header)));
return_ACPI_STATUS(AE_INVALID_TABLE_LENGTH);
}
@@ -343,8 +344,8 @@ acpi_tb_get_this_table(struct acpi_point
full_table = ACPI_ALLOCATE(header->length);
if (!full_table) {
ACPI_ERROR((AE_INFO,
- "Could not allocate table memory for
[%4.4s] length %X",
- header->signature, header->length));
+ "Could not allocate table memory for
[%4.4s] length %lx",
+ header->signature, (unsigned long)
header->length));
return_ACPI_STATUS(AE_NO_MEMORY);
}
-
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html