diff options
Diffstat (limited to 'drivers/acpi/utilities/utstate.c')
-rw-r--r-- | drivers/acpi/utilities/utstate.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/acpi/utilities/utstate.c b/drivers/acpi/utilities/utstate.c index aec5034cd978..0f5c5bb5deff 100644 --- a/drivers/acpi/utilities/utstate.c +++ b/drivers/acpi/utilities/utstate.c | |||
@@ -96,7 +96,7 @@ void | |||
96 | acpi_ut_push_generic_state(union acpi_generic_state **list_head, | 96 | acpi_ut_push_generic_state(union acpi_generic_state **list_head, |
97 | union acpi_generic_state *state) | 97 | union acpi_generic_state *state) |
98 | { | 98 | { |
99 | ACPI_FUNCTION_TRACE("ut_push_generic_state"); | 99 | ACPI_FUNCTION_TRACE(ut_push_generic_state); |
100 | 100 | ||
101 | /* Push the state object onto the front of the list (stack) */ | 101 | /* Push the state object onto the front of the list (stack) */ |
102 | 102 | ||
@@ -123,7 +123,7 @@ union acpi_generic_state *acpi_ut_pop_generic_state(union acpi_generic_state | |||
123 | { | 123 | { |
124 | union acpi_generic_state *state; | 124 | union acpi_generic_state *state; |
125 | 125 | ||
126 | ACPI_FUNCTION_TRACE("ut_pop_generic_state"); | 126 | ACPI_FUNCTION_TRACE(ut_pop_generic_state); |
127 | 127 | ||
128 | /* Remove the state object at the head of the list (stack) */ | 128 | /* Remove the state object at the head of the list (stack) */ |
129 | 129 | ||
@@ -185,7 +185,7 @@ struct acpi_thread_state *acpi_ut_create_thread_state(void) | |||
185 | { | 185 | { |
186 | union acpi_generic_state *state; | 186 | union acpi_generic_state *state; |
187 | 187 | ||
188 | ACPI_FUNCTION_TRACE("ut_create_thread_state"); | 188 | ACPI_FUNCTION_TRACE(ut_create_thread_state); |
189 | 189 | ||
190 | /* Create the generic state object */ | 190 | /* Create the generic state object */ |
191 | 191 | ||
@@ -222,7 +222,7 @@ union acpi_generic_state *acpi_ut_create_update_state(union acpi_operand_object | |||
222 | { | 222 | { |
223 | union acpi_generic_state *state; | 223 | union acpi_generic_state *state; |
224 | 224 | ||
225 | ACPI_FUNCTION_TRACE_PTR("ut_create_update_state", object); | 225 | ACPI_FUNCTION_TRACE_PTR(ut_create_update_state, object); |
226 | 226 | ||
227 | /* Create the generic state object */ | 227 | /* Create the generic state object */ |
228 | 228 | ||
@@ -259,7 +259,7 @@ union acpi_generic_state *acpi_ut_create_pkg_state(void *internal_object, | |||
259 | { | 259 | { |
260 | union acpi_generic_state *state; | 260 | union acpi_generic_state *state; |
261 | 261 | ||
262 | ACPI_FUNCTION_TRACE_PTR("ut_create_pkg_state", internal_object); | 262 | ACPI_FUNCTION_TRACE_PTR(ut_create_pkg_state, internal_object); |
263 | 263 | ||
264 | /* Create the generic state object */ | 264 | /* Create the generic state object */ |
265 | 265 | ||
@@ -296,7 +296,7 @@ union acpi_generic_state *acpi_ut_create_control_state(void) | |||
296 | { | 296 | { |
297 | union acpi_generic_state *state; | 297 | union acpi_generic_state *state; |
298 | 298 | ||
299 | ACPI_FUNCTION_TRACE("ut_create_control_state"); | 299 | ACPI_FUNCTION_TRACE(ut_create_control_state); |
300 | 300 | ||
301 | /* Create the generic state object */ | 301 | /* Create the generic state object */ |
302 | 302 | ||
@@ -328,7 +328,7 @@ union acpi_generic_state *acpi_ut_create_control_state(void) | |||
328 | 328 | ||
329 | void acpi_ut_delete_generic_state(union acpi_generic_state *state) | 329 | void acpi_ut_delete_generic_state(union acpi_generic_state *state) |
330 | { | 330 | { |
331 | ACPI_FUNCTION_TRACE("ut_delete_generic_state"); | 331 | ACPI_FUNCTION_TRACE(ut_delete_generic_state); |
332 | 332 | ||
333 | /* Ignore null state */ | 333 | /* Ignore null state */ |
334 | 334 | ||