diff options
-rw-r--r-- | drivers/acpi/acpica/psxface.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/psxface.c b/drivers/acpi/acpica/psxface.c index 8d7e5b59b598..f3c87264bd1b 100644 --- a/drivers/acpi/acpica/psxface.c +++ b/drivers/acpi/acpica/psxface.c | |||
@@ -305,6 +305,17 @@ acpi_status acpi_ps_execute_table(struct acpi_evaluate_info *info) | |||
305 | walk_state->parse_flags |= ACPI_PARSE_MODULE_LEVEL; | 305 | walk_state->parse_flags |= ACPI_PARSE_MODULE_LEVEL; |
306 | } | 306 | } |
307 | 307 | ||
308 | /* Info->Node is the default location to load the table */ | ||
309 | |||
310 | if (info->node && info->node != acpi_gbl_root_node) { | ||
311 | status = | ||
312 | acpi_ds_scope_stack_push(info->node, ACPI_TYPE_METHOD, | ||
313 | walk_state); | ||
314 | if (ACPI_FAILURE(status)) { | ||
315 | goto cleanup; | ||
316 | } | ||
317 | } | ||
318 | |||
308 | /* | 319 | /* |
309 | * Parse the AML, walk_state will be deleted by parse_aml | 320 | * Parse the AML, walk_state will be deleted by parse_aml |
310 | */ | 321 | */ |