ACPI: fix printk format warnings
Fix printk format warnings in drivers/acpi: drivers/acpi/tables/tbget.c:326: warning: format '%X' expects type 'unsigned int', but argument 5 has type 'long unsigned int' drivers/acpi/tables/tbrsdt.c:189: warning: format '%X' expects type 'unsigned int', but argument 5 has type 'long unsigned int' Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
7af8b66004
commit
a790b323fb
|
@ -324,7 +324,7 @@ acpi_tb_get_this_table(struct acpi_pointer *address,
|
|||
|
||||
if (header->length < sizeof(struct acpi_table_header)) {
|
||||
ACPI_ERROR((AE_INFO,
|
||||
"Table length (%X) is smaller than minimum (%X)",
|
||||
"Table length (%X) is smaller than minimum (%zX)",
|
||||
header->length, sizeof(struct acpi_table_header)));
|
||||
|
||||
return_ACPI_STATUS(AE_INVALID_TABLE_LENGTH);
|
||||
|
|
|
@ -187,7 +187,7 @@ acpi_status acpi_tb_validate_rsdt(struct acpi_table_header *table_ptr)
|
|||
|
||||
if (table_ptr->length < sizeof(struct acpi_table_header)) {
|
||||
ACPI_ERROR((AE_INFO,
|
||||
"RSDT/XSDT length (%X) is smaller than minimum (%X)",
|
||||
"RSDT/XSDT length (%X) is smaller than minimum (%zX)",
|
||||
table_ptr->length,
|
||||
sizeof(struct acpi_table_header)));
|
||||
|
||||
|
|
Loading…
Reference in New Issue