diff options
Diffstat (limited to 'drivers/acpi/events/evrgnini.c')
-rw-r--r-- | drivers/acpi/events/evrgnini.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/acpi/events/evrgnini.c b/drivers/acpi/events/evrgnini.c index d1809f4240a4..1cecd577b899 100644 --- a/drivers/acpi/events/evrgnini.c +++ b/drivers/acpi/events/evrgnini.c | |||
@@ -71,7 +71,7 @@ acpi_ev_system_memory_region_setup(acpi_handle handle, | |||
71 | (union acpi_operand_object *)handle; | 71 | (union acpi_operand_object *)handle; |
72 | struct acpi_mem_space_context *local_region_context; | 72 | struct acpi_mem_space_context *local_region_context; |
73 | 73 | ||
74 | ACPI_FUNCTION_TRACE("ev_system_memory_region_setup"); | 74 | ACPI_FUNCTION_TRACE(ev_system_memory_region_setup); |
75 | 75 | ||
76 | if (function == ACPI_REGION_DEACTIVATE) { | 76 | if (function == ACPI_REGION_DEACTIVATE) { |
77 | if (*region_context) { | 77 | if (*region_context) { |
@@ -129,7 +129,7 @@ acpi_ev_io_space_region_setup(acpi_handle handle, | |||
129 | u32 function, | 129 | u32 function, |
130 | void *handler_context, void **region_context) | 130 | void *handler_context, void **region_context) |
131 | { | 131 | { |
132 | ACPI_FUNCTION_TRACE("ev_io_space_region_setup"); | 132 | ACPI_FUNCTION_TRACE(ev_io_space_region_setup); |
133 | 133 | ||
134 | if (function == ACPI_REGION_DEACTIVATE) { | 134 | if (function == ACPI_REGION_DEACTIVATE) { |
135 | *region_context = NULL; | 135 | *region_context = NULL; |
@@ -172,7 +172,7 @@ acpi_ev_pci_config_region_setup(acpi_handle handle, | |||
172 | (union acpi_operand_object *)handle; | 172 | (union acpi_operand_object *)handle; |
173 | struct acpi_device_id object_hID; | 173 | struct acpi_device_id object_hID; |
174 | 174 | ||
175 | ACPI_FUNCTION_TRACE("ev_pci_config_region_setup"); | 175 | ACPI_FUNCTION_TRACE(ev_pci_config_region_setup); |
176 | 176 | ||
177 | handler_obj = region_obj->region.handler; | 177 | handler_obj = region_obj->region.handler; |
178 | if (!handler_obj) { | 178 | if (!handler_obj) { |
@@ -248,7 +248,7 @@ acpi_ev_pci_config_region_setup(acpi_handle handle, | |||
248 | } else { | 248 | } else { |
249 | ACPI_EXCEPTION((AE_INFO, | 249 | ACPI_EXCEPTION((AE_INFO, |
250 | status, | 250 | status, |
251 | "Could not install pci_config handler for Root Bridge %4.4s", | 251 | "Could not install PciConfig handler for Root Bridge %4.4s", |
252 | acpi_ut_get_node_name | 252 | acpi_ut_get_node_name |
253 | (pci_root_node))); | 253 | (pci_root_node))); |
254 | } | 254 | } |
@@ -350,7 +350,7 @@ acpi_ev_pci_bar_region_setup(acpi_handle handle, | |||
350 | u32 function, | 350 | u32 function, |
351 | void *handler_context, void **region_context) | 351 | void *handler_context, void **region_context) |
352 | { | 352 | { |
353 | ACPI_FUNCTION_TRACE("ev_pci_bar_region_setup"); | 353 | ACPI_FUNCTION_TRACE(ev_pci_bar_region_setup); |
354 | 354 | ||
355 | return_ACPI_STATUS(AE_OK); | 355 | return_ACPI_STATUS(AE_OK); |
356 | } | 356 | } |
@@ -377,7 +377,7 @@ acpi_ev_cmos_region_setup(acpi_handle handle, | |||
377 | u32 function, | 377 | u32 function, |
378 | void *handler_context, void **region_context) | 378 | void *handler_context, void **region_context) |
379 | { | 379 | { |
380 | ACPI_FUNCTION_TRACE("ev_cmos_region_setup"); | 380 | ACPI_FUNCTION_TRACE(ev_cmos_region_setup); |
381 | 381 | ||
382 | return_ACPI_STATUS(AE_OK); | 382 | return_ACPI_STATUS(AE_OK); |
383 | } | 383 | } |
@@ -402,7 +402,7 @@ acpi_ev_default_region_setup(acpi_handle handle, | |||
402 | u32 function, | 402 | u32 function, |
403 | void *handler_context, void **region_context) | 403 | void *handler_context, void **region_context) |
404 | { | 404 | { |
405 | ACPI_FUNCTION_TRACE("ev_default_region_setup"); | 405 | ACPI_FUNCTION_TRACE(ev_default_region_setup); |
406 | 406 | ||
407 | if (function == ACPI_REGION_DEACTIVATE) { | 407 | if (function == ACPI_REGION_DEACTIVATE) { |
408 | *region_context = NULL; | 408 | *region_context = NULL; |
@@ -448,7 +448,7 @@ acpi_ev_initialize_region(union acpi_operand_object *region_obj, | |||
448 | acpi_name *reg_name_ptr = (acpi_name *) METHOD_NAME__REG; | 448 | acpi_name *reg_name_ptr = (acpi_name *) METHOD_NAME__REG; |
449 | union acpi_operand_object *region_obj2; | 449 | union acpi_operand_object *region_obj2; |
450 | 450 | ||
451 | ACPI_FUNCTION_TRACE_U32("ev_initialize_region", acpi_ns_locked); | 451 | ACPI_FUNCTION_TRACE_U32(ev_initialize_region, acpi_ns_locked); |
452 | 452 | ||
453 | if (!region_obj) { | 453 | if (!region_obj) { |
454 | return_ACPI_STATUS(AE_BAD_PARAMETER); | 454 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
@@ -588,7 +588,7 @@ acpi_ev_initialize_region(union acpi_operand_object *region_obj, | |||
588 | /* If we get here, there is no handler for this region */ | 588 | /* If we get here, there is no handler for this region */ |
589 | 589 | ||
590 | ACPI_DEBUG_PRINT((ACPI_DB_OPREGION, | 590 | ACPI_DEBUG_PRINT((ACPI_DB_OPREGION, |
591 | "No handler for region_type %s(%X) (region_obj %p)\n", | 591 | "No handler for RegionType %s(%X) (RegionObj %p)\n", |
592 | acpi_ut_get_region_name(space_id), space_id, | 592 | acpi_ut_get_region_name(space_id), space_id, |
593 | region_obj)); | 593 | region_obj)); |
594 | 594 | ||