Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95472
b: refs/heads/master
c: b1dd909
h: refs/heads/master
v: v3
  • Loading branch information
Bob Moore authored and Len Brown committed Apr 22, 2008
1 parent 6dc7e1a commit 597b74a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 507f046c4dd17e9c94b5130ba184f8da90504685
refs/heads/master: b1dd9096fef08642eb509fbf2a40b3c7734dce1c
9 changes: 9 additions & 0 deletions trunk/drivers/acpi/utilities/utcopy.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,11 @@ acpi_ut_copy_isimple_to_esimple(union acpi_operand_object *internal_object,
/*
* There is no corresponding external object type
*/
ACPI_ERROR((AE_INFO,
"Unsupported object type, cannot convert to external object: %s",
acpi_ut_get_type_name(ACPI_GET_OBJECT_TYPE
(internal_object))));

return_ACPI_STATUS(AE_SUPPORT);
}

Expand Down Expand Up @@ -467,6 +472,10 @@ acpi_ut_copy_esimple_to_isimple(union acpi_object *external_object,
default:
/* All other types are not supported */

ACPI_ERROR((AE_INFO,
"Unsupported object type, cannot convert to internal object: %s",
acpi_ut_get_type_name(external_object->type)));

return_ACPI_STATUS(AE_SUPPORT);
}

Expand Down

0 comments on commit 597b74a

Please sign in to comment.