aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/utdelete.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/acpica/utdelete.c')
-rw-r--r--drivers/acpi/acpica/utdelete.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/acpi/acpica/utdelete.c b/drivers/acpi/acpica/utdelete.c
index 16b51c69606a..ed794cd033ea 100644
--- a/drivers/acpi/acpica/utdelete.c
+++ b/drivers/acpi/acpica/utdelete.c
@@ -434,7 +434,7 @@ acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action)
434 434
435 default: 435 default:
436 436
437 ACPI_ERROR((AE_INFO, "Unknown action (%X)", action)); 437 ACPI_ERROR((AE_INFO, "Unknown action (0x%X)", action));
438 break; 438 break;
439 } 439 }
440 440
@@ -444,8 +444,8 @@ acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action)
444 */ 444 */
445 if (count > ACPI_MAX_REFERENCE_COUNT) { 445 if (count > ACPI_MAX_REFERENCE_COUNT) {
446 ACPI_WARNING((AE_INFO, 446 ACPI_WARNING((AE_INFO,
447 "Large Reference Count (%X) in object %p", count, 447 "Large Reference Count (0x%X) in object %p",
448 object)); 448 count, object));
449 } 449 }
450} 450}
451 451