|
@@ -56,6 +56,7 @@
|
|
#include "acdispat.h"
|
|
#include "acdispat.h"
|
|
#include "amlcode.h"
|
|
#include "amlcode.h"
|
|
#include "acinterp.h"
|
|
#include "acinterp.h"
|
|
|
|
+#include "acnamesp.h"
|
|
|
|
|
|
#define _COMPONENT ACPI_PARSER
|
|
#define _COMPONENT ACPI_PARSER
|
|
ACPI_MODULE_NAME("psparse")
|
|
ACPI_MODULE_NAME("psparse")
|
|
@@ -538,9 +539,16 @@ acpi_status acpi_ps_parse_aml(struct acpi_walk_state *walk_state)
|
|
/* Either the method parse or actual execution failed */
|
|
/* Either the method parse or actual execution failed */
|
|
|
|
|
|
acpi_ex_exit_interpreter();
|
|
acpi_ex_exit_interpreter();
|
|
- ACPI_ERROR_METHOD("Method parse/execution failed",
|
|
|
|
- walk_state->method_node, NULL,
|
|
|
|
- status);
|
|
|
|
|
|
+ if (status == AE_ABORT_METHOD) {
|
|
|
|
+ acpi_ns_print_node_pathname(walk_state->
|
|
|
|
+ method_node,
|
|
|
|
+ "Method aborted:");
|
|
|
|
+ acpi_os_printf("\n");
|
|
|
|
+ } else {
|
|
|
|
+ ACPI_ERROR_METHOD
|
|
|
|
+ ("Method parse/execution failed",
|
|
|
|
+ walk_state->method_node, NULL, status);
|
|
|
|
+ }
|
|
acpi_ex_enter_interpreter();
|
|
acpi_ex_enter_interpreter();
|
|
|
|
|
|
/* Check for possible multi-thread reentrancy problem */
|
|
/* Check for possible multi-thread reentrancy problem */
|