diff options
author | Len Brown <len.brown@intel.com> | 2006-10-14 02:26:42 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-10-14 02:26:42 -0400 |
commit | 384bc8f07075804b9ce8807ed54dd7a483bd749a (patch) | |
tree | 99728f6d04d0000ff297b537e54996dde5814545 /drivers/acpi/events | |
parent | e0749be933c3b0c4498d693524b0aa15cbdf0f8b (diff) | |
parent | 37605a6900f6b4d886d995751fcfeef88c4e462c (diff) | |
download | op-kernel-dev-384bc8f07075804b9ce8807ed54dd7a483bd749a.zip op-kernel-dev-384bc8f07075804b9ce8807ed54dd7a483bd749a.tar.gz |
Pull bugzilla-5534 into test branch
Diffstat (limited to 'drivers/acpi/events')
-rw-r--r-- | drivers/acpi/events/evmisc.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/acpi/events/evmisc.c b/drivers/acpi/events/evmisc.c index 6eef4ef..ee2a10b 100644 --- a/drivers/acpi/events/evmisc.c +++ b/drivers/acpi/events/evmisc.c @@ -342,20 +342,8 @@ static u32 acpi_ev_global_lock_handler(void *context) if (acquired) { /* Got the lock, now wake all threads waiting for it */ - acpi_gbl_global_lock_acquired = TRUE; - - /* Run the Global Lock thread which will signal all waiting threads */ - - status = - acpi_os_execute(OSL_GLOBAL_LOCK_HANDLER, - acpi_ev_global_lock_thread, context); - if (ACPI_FAILURE(status)) { - ACPI_EXCEPTION((AE_INFO, status, - "Could not queue Global Lock thread")); - - return (ACPI_INTERRUPT_NOT_HANDLED); - } + acpi_ev_global_lock_thread(context); } return (ACPI_INTERRUPT_HANDLED); |