aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/parser/psparse.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/parser/psparse.c')
-rw-r--r--drivers/acpi/parser/psparse.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/acpi/parser/psparse.c b/drivers/acpi/parser/psparse.c
index 3b540fe17a0..a9f3229f410 100644
--- a/drivers/acpi/parser/psparse.c
+++ b/drivers/acpi/parser/psparse.c
@@ -512,9 +512,9 @@ acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state)
512 } else if ((status != AE_OK) && (walk_state->method_desc)) { 512 } else if ((status != AE_OK) && (walk_state->method_desc)) {
513 /* Either the method parse or actual execution failed */ 513 /* Either the method parse or actual execution failed */
514 514
515 ACPI_REPORT_MTERROR("Method parse/execution failed", 515 ACPI_ERROR_METHOD("Method parse/execution failed",
516 walk_state->method_node, NULL, 516 walk_state->method_node, NULL,
517 status); 517 status);
518 518
519 /* Check for possible multi-thread reentrancy problem */ 519 /* Check for possible multi-thread reentrancy problem */
520 520
@@ -558,7 +558,8 @@ acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state)
558 walk_state->method_desc->method. 558 walk_state->method_desc->method.
559 thread_count--; 559 thread_count--;
560 } else { 560 } else {
561 ACPI_REPORT_ERROR(("Invalid zero thread count in method\n")); 561 ACPI_ERROR((AE_INFO,
562 "Invalid zero thread count in method"));
562 } 563 }
563 } 564 }
564 565