diff options
Diffstat (limited to 'drivers/acpi/utilities/utcopy.c')
-rw-r--r-- | drivers/acpi/utilities/utcopy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/acpi/utilities/utcopy.c b/drivers/acpi/utilities/utcopy.c index 1a4da006822a..df2d32096b72 100644 --- a/drivers/acpi/utilities/utcopy.c +++ b/drivers/acpi/utilities/utcopy.c | |||
@@ -606,7 +606,8 @@ acpi_ut_copy_eobject_to_iobject(union acpi_object *external_object, | |||
606 | /* | 606 | /* |
607 | * Packages as external input to control methods are not supported, | 607 | * Packages as external input to control methods are not supported, |
608 | */ | 608 | */ |
609 | ACPI_REPORT_ERROR(("Packages as parameters not implemented!\n")); | 609 | ACPI_ERROR((AE_INFO, |
610 | "Packages as parameters not implemented!")); | ||
610 | 611 | ||
611 | return_ACPI_STATUS(AE_NOT_IMPLEMENTED); | 612 | return_ACPI_STATUS(AE_NOT_IMPLEMENTED); |
612 | } | 613 | } |
@@ -869,7 +870,7 @@ acpi_ut_copy_ipackage_to_ipackage(union acpi_operand_object *source_obj, | |||
869 | count + | 870 | count + |
870 | 1) * sizeof(void *)); | 871 | 1) * sizeof(void *)); |
871 | if (!dest_obj->package.elements) { | 872 | if (!dest_obj->package.elements) { |
872 | ACPI_REPORT_ERROR(("Package allocation failure\n")); | 873 | ACPI_ERROR((AE_INFO, "Package allocation failure")); |
873 | return_ACPI_STATUS(AE_NO_MEMORY); | 874 | return_ACPI_STATUS(AE_NO_MEMORY); |
874 | } | 875 | } |
875 | 876 | ||