hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
kernel/drivers/acpi/acpica/psxface.c
....@@ -3,7 +3,7 @@
33 *
44 * Module Name: psxface - Parser external interfaces
55 *
6
- * Copyright (C) 2000 - 2018, Intel Corp.
6
+ * Copyright (C) 2000 - 2020, Intel Corp.
77 *
88 *****************************************************************************/
99
....@@ -147,6 +147,9 @@
147147 goto cleanup;
148148 }
149149
150
+ walk_state->method_pathname = info->full_pathname;
151
+ walk_state->method_is_nested = FALSE;
152
+
150153 if (info->obj_desc->method.info_flags & ACPI_METHOD_MODULE_LEVEL) {
151154 walk_state->parse_flags |= ACPI_PARSE_MODULE_LEVEL;
152155 }
....@@ -267,6 +270,9 @@
267270 goto cleanup;
268271 }
269272
273
+ walk_state->method_pathname = info->full_pathname;
274
+ walk_state->method_is_nested = FALSE;
275
+
270276 if (info->obj_desc->method.info_flags & ACPI_METHOD_MODULE_LEVEL) {
271277 walk_state->parse_flags |= ACPI_PARSE_MODULE_LEVEL;
272278 }