|
@@ -238,7 +238,7 @@ const char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc)
|
|
|
|
|
|
if (!obj_desc) {
|
|
if (!obj_desc) {
|
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Null Object Descriptor\n"));
|
|
ACPI_DEBUG_PRINT((ACPI_DB_EXEC, "Null Object Descriptor\n"));
|
|
- return_PTR("[NULL Object Descriptor]");
|
|
|
|
|
|
+ return_STR("[NULL Object Descriptor]");
|
|
}
|
|
}
|
|
|
|
|
|
/* These descriptor types share a common area */
|
|
/* These descriptor types share a common area */
|
|
@@ -251,7 +251,7 @@ const char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc)
|
|
acpi_ut_get_descriptor_name(obj_desc),
|
|
acpi_ut_get_descriptor_name(obj_desc),
|
|
obj_desc));
|
|
obj_desc));
|
|
|
|
|
|
- return_PTR("Invalid object");
|
|
|
|
|
|
+ return_STR("Invalid object");
|
|
}
|
|
}
|
|
|
|
|
|
return_STR(acpi_ut_get_type_name(obj_desc->common.type));
|
|
return_STR(acpi_ut_get_type_name(obj_desc->common.type));
|