Skip to content

Commit

Permalink
ACPICA: Enhance implicit return mechanism
Browse files Browse the repository at this point in the history
For Windows compatibility, return an implicit integer of value
zero for methods that have no executable code. A default implicit
value of zero is provided for methods. Lin Ming.

Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Lin Ming authored and Len Brown committed Dec 30, 2008
1 parent eeb4437 commit 7a4b813
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions drivers/acpi/parser/psxface.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,22 @@ acpi_status acpi_ps_execute_method(struct acpi_evaluate_info *info)
goto cleanup;
}

/*
* Start method evaluation with an implicit return of zero.
* This is done for Windows compatibility.
*/
if (acpi_gbl_enable_interpreter_slack) {
walk_state->implicit_return_obj =
acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
if (!walk_state->implicit_return_obj) {
status = AE_NO_MEMORY;
acpi_ds_delete_walk_state(walk_state);
goto cleanup;
}

walk_state->implicit_return_obj->integer.value = 0;
}

/* Parse the AML */

status = acpi_ps_parse_aml(walk_state);
Expand Down

0 comments on commit 7a4b813

Please sign in to comment.