|
@@ -80,9 +80,15 @@ struct acpi_db_execute_walk {
|
|
|
/*
|
|
|
* dbxface - external debugger interfaces
|
|
|
*/
|
|
|
-acpi_status
|
|
|
-acpi_db_single_step(struct acpi_walk_state *walk_state,
|
|
|
- union acpi_parse_object *op, u32 op_type);
|
|
|
+ACPI_DBR_DEPENDENT_RETURN_OK(acpi_status
|
|
|
+ acpi_db_single_step(struct acpi_walk_state
|
|
|
+ *walk_state,
|
|
|
+ union acpi_parse_object *op,
|
|
|
+ u32 op_type))
|
|
|
+ ACPI_DBR_DEPENDENT_RETURN_VOID(void
|
|
|
+ acpi_db_signal_break_point(struct
|
|
|
+ acpi_walk_state
|
|
|
+ *walk_state))
|
|
|
|
|
|
/*
|
|
|
* dbcmds - debug commands and output routines
|
|
@@ -182,11 +188,15 @@ void acpi_db_display_method_info(union acpi_parse_object *op);
|
|
|
|
|
|
void acpi_db_decode_and_display_object(char *target, char *output_type);
|
|
|
|
|
|
-void
|
|
|
-acpi_db_display_result_object(union acpi_operand_object *obj_desc,
|
|
|
- struct acpi_walk_state *walk_state);
|
|
|
+ACPI_DBR_DEPENDENT_RETURN_VOID(void
|
|
|
+ acpi_db_display_result_object(union
|
|
|
+ acpi_operand_object
|
|
|
+ *obj_desc,
|
|
|
+ struct
|
|
|
+ acpi_walk_state
|
|
|
+ *walk_state))
|
|
|
|
|
|
-acpi_status acpi_db_display_all_methods(char *display_count_arg);
|
|
|
+ acpi_status acpi_db_display_all_methods(char *display_count_arg);
|
|
|
|
|
|
void acpi_db_display_arguments(void);
|
|
|
|
|
@@ -198,9 +208,13 @@ void acpi_db_display_calling_tree(void);
|
|
|
|
|
|
void acpi_db_display_object_type(char *object_arg);
|
|
|
|
|
|
-void
|
|
|
-acpi_db_display_argument_object(union acpi_operand_object *obj_desc,
|
|
|
- struct acpi_walk_state *walk_state);
|
|
|
+ACPI_DBR_DEPENDENT_RETURN_VOID(void
|
|
|
+ acpi_db_display_argument_object(union
|
|
|
+ acpi_operand_object
|
|
|
+ *obj_desc,
|
|
|
+ struct
|
|
|
+ acpi_walk_state
|
|
|
+ *walk_state))
|
|
|
|
|
|
/*
|
|
|
* dbexec - debugger control method execution
|