diff options
Diffstat (limited to 'drivers/acpi/acpica/exresolv.c')
-rw-r--r-- | drivers/acpi/acpica/exresolv.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/acpi/acpica/exresolv.c b/drivers/acpi/acpica/exresolv.c index fdd6a7079b97..7ca35ea8acea 100644 --- a/drivers/acpi/acpica/exresolv.c +++ b/drivers/acpi/acpica/exresolv.c | |||
@@ -231,7 +231,7 @@ acpi_ex_resolve_object_to_value(union acpi_operand_object **stack_ptr, | |||
231 | /* Invalid reference object */ | 231 | /* Invalid reference object */ |
232 | 232 | ||
233 | ACPI_ERROR((AE_INFO, | 233 | ACPI_ERROR((AE_INFO, |
234 | "Unknown TargetType %X in Index/Reference object %p", | 234 | "Unknown TargetType 0x%X in Index/Reference object %p", |
235 | stack_desc->reference.target_type, | 235 | stack_desc->reference.target_type, |
236 | stack_desc)); | 236 | stack_desc)); |
237 | status = AE_AML_INTERNAL; | 237 | status = AE_AML_INTERNAL; |
@@ -273,8 +273,8 @@ acpi_ex_resolve_object_to_value(union acpi_operand_object **stack_ptr, | |||
273 | default: | 273 | default: |
274 | 274 | ||
275 | ACPI_ERROR((AE_INFO, | 275 | ACPI_ERROR((AE_INFO, |
276 | "Unknown Reference type %X in %p", ref_type, | 276 | "Unknown Reference type 0x%X in %p", |
277 | stack_desc)); | 277 | ref_type, stack_desc)); |
278 | status = AE_AML_INTERNAL; | 278 | status = AE_AML_INTERNAL; |
279 | break; | 279 | break; |
280 | } | 280 | } |
@@ -403,7 +403,8 @@ acpi_ex_resolve_multiple(struct acpi_walk_state *walk_state, | |||
403 | 403 | ||
404 | if (ACPI_GET_DESCRIPTOR_TYPE(node) != | 404 | if (ACPI_GET_DESCRIPTOR_TYPE(node) != |
405 | ACPI_DESC_TYPE_NAMED) { | 405 | ACPI_DESC_TYPE_NAMED) { |
406 | ACPI_ERROR((AE_INFO, "Not a NS node %p [%s]", | 406 | ACPI_ERROR((AE_INFO, |
407 | "Not a namespace node %p [%s]", | ||
407 | node, | 408 | node, |
408 | acpi_ut_get_descriptor_name(node))); | 409 | acpi_ut_get_descriptor_name(node))); |
409 | return_ACPI_STATUS(AE_AML_INTERNAL); | 410 | return_ACPI_STATUS(AE_AML_INTERNAL); |
@@ -507,7 +508,7 @@ acpi_ex_resolve_multiple(struct acpi_walk_state *walk_state, | |||
507 | default: | 508 | default: |
508 | 509 | ||
509 | ACPI_ERROR((AE_INFO, | 510 | ACPI_ERROR((AE_INFO, |
510 | "Unknown Reference Class %2.2X", | 511 | "Unknown Reference Class 0x%2.2X", |
511 | obj_desc->reference.class)); | 512 | obj_desc->reference.class)); |
512 | return_ACPI_STATUS(AE_AML_INTERNAL); | 513 | return_ACPI_STATUS(AE_AML_INTERNAL); |
513 | } | 514 | } |