diff options
author | Len Brown <len.brown@intel.com> | 2008-01-11 12:22:57 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-01-11 12:22:57 -0500 |
commit | aa7f00741da5e2adeca3e03103d14b9141040e49 (patch) | |
tree | 7278dc0874f4475a7bbbec2e58d6fd62b6854552 | |
parent | e63501d51d6a1a897470be2684e9c55a46d0d6d5 (diff) | |
parent | 014d433f35d7f34b55dcc7b57c7635aaefc3757f (diff) | |
download | op-kernel-dev-aa7f00741da5e2adeca3e03103d14b9141040e49.zip op-kernel-dev-aa7f00741da5e2adeca3e03103d14b9141040e49.tar.gz |
Pull bugzilla-8171 into release branch
-rw-r--r-- | drivers/acpi/events/evregion.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/acpi/events/evregion.c b/drivers/acpi/events/evregion.c index e99f0c4..58ad097 100644 --- a/drivers/acpi/events/evregion.c +++ b/drivers/acpi/events/evregion.c @@ -344,7 +344,7 @@ acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj, * setup will potentially execute control methods * (e.g., _REG method for this region) */ - acpi_ex_relinquish_interpreter(); + acpi_ex_exit_interpreter(); status = region_setup(region_obj, ACPI_REGION_ACTIVATE, handler_desc->address_space.context, @@ -352,7 +352,7 @@ acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj, /* Re-enter the interpreter */ - acpi_ex_reacquire_interpreter(); + acpi_ex_enter_interpreter(); /* Check for failure of the Region Setup */ @@ -405,7 +405,7 @@ acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj, * exit the interpreter because the handler *might* block -- we don't * know what it will do, so we can't hold the lock on the intepreter. */ - acpi_ex_relinquish_interpreter(); + acpi_ex_exit_interpreter(); } /* Call the handler */ @@ -426,7 +426,7 @@ acpi_ev_address_space_dispatch(union acpi_operand_object *region_obj, * We just returned from a non-default handler, we must re-enter the * interpreter */ - acpi_ex_reacquire_interpreter(); + acpi_ex_enter_interpreter(); } return_ACPI_STATUS(status); |