aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/rsmisc.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/acpica/rsmisc.c')
-rw-r--r--drivers/acpi/acpica/rsmisc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/rsmisc.c b/drivers/acpi/acpica/rsmisc.c
index 07de352fa44..f8cd9e87d98 100644
--- a/drivers/acpi/acpica/rsmisc.c
+++ b/drivers/acpi/acpica/rsmisc.c
@@ -88,7 +88,7 @@ acpi_rs_convert_aml_to_resource(struct acpi_resource *resource,
88 /* Each internal resource struct is expected to be 32-bit aligned */ 88 /* Each internal resource struct is expected to be 32-bit aligned */
89 89
90 ACPI_WARNING((AE_INFO, 90 ACPI_WARNING((AE_INFO,
91 "Misaligned resource pointer (get): %p Type %2.2X Len %X", 91 "Misaligned resource pointer (get): %p Type 0x%2.2X Length %u",
92 resource, resource->type, resource->length)); 92 resource, resource->type, resource->length));
93 } 93 }
94 94
@@ -541,7 +541,7 @@ if (((aml->irq.flags & 0x09) == 0x00) || ((aml->irq.flags & 0x09) == 0x09)) {
541 * "IRQ Format"), so 0x00 and 0x09 are illegal. 541 * "IRQ Format"), so 0x00 and 0x09 are illegal.
542 */ 542 */
543 ACPI_ERROR((AE_INFO, 543 ACPI_ERROR((AE_INFO,
544 "Invalid interrupt polarity/trigger in resource list, %X", 544 "Invalid interrupt polarity/trigger in resource list, 0x%X",
545 aml->irq.flags)); 545 aml->irq.flags));
546 return_ACPI_STATUS(AE_BAD_DATA); 546 return_ACPI_STATUS(AE_BAD_DATA);
547} 547}