diff options
Diffstat (limited to 'drivers/acpi/executer/exconvrt.c')
-rw-r--r-- | drivers/acpi/executer/exconvrt.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/drivers/acpi/executer/exconvrt.c b/drivers/acpi/executer/exconvrt.c index e6f55cf8ad31..e6d52e12d77a 100644 --- a/drivers/acpi/executer/exconvrt.c +++ b/drivers/acpi/executer/exconvrt.c | |||
@@ -641,7 +641,9 @@ acpi_ex_convert_to_target_type(acpi_object_type destination_type, | |||
641 | break; | 641 | break; |
642 | 642 | ||
643 | default: | 643 | default: |
644 | ACPI_REPORT_ERROR(("Bad destination type during conversion: %X\n", destination_type)); | 644 | ACPI_ERROR((AE_INFO, |
645 | "Bad destination type during conversion: %X", | ||
646 | destination_type)); | ||
645 | status = AE_AML_INTERNAL; | 647 | status = AE_AML_INTERNAL; |
646 | break; | 648 | break; |
647 | } | 649 | } |
@@ -654,7 +656,12 @@ acpi_ex_convert_to_target_type(acpi_object_type destination_type, | |||
654 | break; | 656 | break; |
655 | 657 | ||
656 | default: | 658 | default: |
657 | ACPI_REPORT_ERROR(("Unknown Target type ID 0x%X aml_opcode %X dest_type %s\n", GET_CURRENT_ARG_TYPE(walk_state->op_info->runtime_args), walk_state->opcode, acpi_ut_get_type_name(destination_type))); | 659 | ACPI_ERROR((AE_INFO, |
660 | "Unknown Target type ID 0x%X aml_opcode %X dest_type %s", | ||
661 | GET_CURRENT_ARG_TYPE(walk_state->op_info-> | ||
662 | runtime_args), | ||
663 | walk_state->opcode, | ||
664 | acpi_ut_get_type_name(destination_type))); | ||
658 | status = AE_AML_INTERNAL; | 665 | status = AE_AML_INTERNAL; |
659 | } | 666 | } |
660 | 667 | ||