diff options
Diffstat (limited to 'drivers/acpi/acpica/acstruct.h')
-rw-r--r-- | drivers/acpi/acpica/acstruct.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/acstruct.h b/drivers/acpi/acpica/acstruct.h index acf27156dbd4..14be32961b4c 100644 --- a/drivers/acpi/acpica/acstruct.h +++ b/drivers/acpi/acpica/acstruct.h | |||
@@ -60,6 +60,8 @@ struct acpi_walk_state { | |||
60 | struct acpi_parse_state parser_state; /* Current state of parser */ | 60 | struct acpi_parse_state parser_state; /* Current state of parser */ |
61 | u32 prev_arg_types; | 61 | u32 prev_arg_types; |
62 | u32 arg_count; /* push for fixed or var args */ | 62 | u32 arg_count; /* push for fixed or var args */ |
63 | u16 method_nesting_depth; | ||
64 | u8 method_is_nested; | ||
63 | 65 | ||
64 | struct acpi_namespace_node arguments[ACPI_METHOD_NUM_ARGS]; /* Control method arguments */ | 66 | struct acpi_namespace_node arguments[ACPI_METHOD_NUM_ARGS]; /* Control method arguments */ |
65 | struct acpi_namespace_node local_variables[ACPI_METHOD_NUM_LOCALS]; /* Control method locals */ | 67 | struct acpi_namespace_node local_variables[ACPI_METHOD_NUM_LOCALS]; /* Control method locals */ |
@@ -74,7 +76,8 @@ struct acpi_walk_state { | |||
74 | struct acpi_namespace_node *method_call_node; /* Called method Node */ | 76 | struct acpi_namespace_node *method_call_node; /* Called method Node */ |
75 | union acpi_parse_object *method_call_op; /* method_call Op if running a method */ | 77 | union acpi_parse_object *method_call_op; /* method_call Op if running a method */ |
76 | union acpi_operand_object *method_desc; /* Method descriptor if running a method */ | 78 | union acpi_operand_object *method_desc; /* Method descriptor if running a method */ |
77 | struct acpi_namespace_node *method_node; /* Method node if running a method. */ | 79 | struct acpi_namespace_node *method_node; /* Method node if running a method */ |
80 | char *method_pathname; /* Full pathname of running method */ | ||
78 | union acpi_parse_object *op; /* Current parser op */ | 81 | union acpi_parse_object *op; /* Current parser op */ |
79 | const struct acpi_opcode_info *op_info; /* Info on current opcode */ | 82 | const struct acpi_opcode_info *op_info; /* Info on current opcode */ |
80 | union acpi_parse_object *origin; /* Start of walk [Obsolete] */ | 83 | union acpi_parse_object *origin; /* Start of walk [Obsolete] */ |