aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/utilities/utdelete.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/utilities/utdelete.c')
-rw-r--r--drivers/acpi/utilities/utdelete.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/acpi/utilities/utdelete.c b/drivers/acpi/utilities/utdelete.c
index b4e34a2f81f7..0bb4b59b2804 100644
--- a/drivers/acpi/utilities/utdelete.c
+++ b/drivers/acpi/utilities/utdelete.c
@@ -76,7 +76,7 @@ static void acpi_ut_delete_internal_obj(union acpi_operand_object *object)
76 union acpi_operand_object *second_desc; 76 union acpi_operand_object *second_desc;
77 union acpi_operand_object *next_desc; 77 union acpi_operand_object *next_desc;
78 78
79 ACPI_FUNCTION_TRACE_PTR("ut_delete_internal_obj", object); 79 ACPI_FUNCTION_TRACE_PTR(ut_delete_internal_obj, object);
80 80
81 if (!object) { 81 if (!object) {
82 return_VOID; 82 return_VOID;
@@ -276,7 +276,7 @@ void acpi_ut_delete_internal_object_list(union acpi_operand_object **obj_list)
276{ 276{
277 union acpi_operand_object **internal_obj; 277 union acpi_operand_object **internal_obj;
278 278
279 ACPI_FUNCTION_TRACE("ut_delete_internal_object_list"); 279 ACPI_FUNCTION_TRACE(ut_delete_internal_object_list);
280 280
281 /* Walk the null-terminated internal list */ 281 /* Walk the null-terminated internal list */
282 282
@@ -309,7 +309,7 @@ acpi_ut_update_ref_count(union acpi_operand_object *object, u32 action)
309 u16 count; 309 u16 count;
310 u16 new_count; 310 u16 new_count;
311 311
312 ACPI_FUNCTION_NAME("ut_update_ref_count"); 312 ACPI_FUNCTION_NAME(ut_update_ref_count);
313 313
314 if (!object) { 314 if (!object) {
315 return; 315 return;
@@ -425,7 +425,7 @@ acpi_ut_update_object_reference(union acpi_operand_object * object, u16 action)
425 union acpi_generic_state *state; 425 union acpi_generic_state *state;
426 acpi_native_uint i; 426 acpi_native_uint i;
427 427
428 ACPI_FUNCTION_TRACE_PTR("ut_update_object_reference", object); 428 ACPI_FUNCTION_TRACE_PTR(ut_update_object_reference, object);
429 429
430 while (object) { 430 while (object) {
431 431
@@ -570,7 +570,7 @@ acpi_ut_update_object_reference(union acpi_operand_object * object, u16 action)
570void acpi_ut_add_reference(union acpi_operand_object *object) 570void acpi_ut_add_reference(union acpi_operand_object *object)
571{ 571{
572 572
573 ACPI_FUNCTION_TRACE_PTR("ut_add_reference", object); 573 ACPI_FUNCTION_TRACE_PTR(ut_add_reference, object);
574 574
575 /* Ensure that we have a valid object */ 575 /* Ensure that we have a valid object */
576 576
@@ -603,7 +603,7 @@ void acpi_ut_add_reference(union acpi_operand_object *object)
603void acpi_ut_remove_reference(union acpi_operand_object *object) 603void acpi_ut_remove_reference(union acpi_operand_object *object)
604{ 604{
605 605
606 ACPI_FUNCTION_TRACE_PTR("ut_remove_reference", object); 606 ACPI_FUNCTION_TRACE_PTR(ut_remove_reference, object);
607 607
608 /* 608 /*
609 * Allow a NULL pointer to be passed in, just ignore it. This saves 609 * Allow a NULL pointer to be passed in, just ignore it. This saves