diff options
Diffstat (limited to 'drivers/acpi/events/evgpe.c')
-rw-r--r-- | drivers/acpi/events/evgpe.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/acpi/events/evgpe.c b/drivers/acpi/events/evgpe.c index 25fd12a29a29..aa179dc78011 100644 --- a/drivers/acpi/events/evgpe.c +++ b/drivers/acpi/events/evgpe.c | |||
@@ -489,7 +489,7 @@ u32 acpi_ev_gpe_detect(struct acpi_gpe_xrupt_info * gpe_xrupt_list) | |||
489 | * RETURN: None | 489 | * RETURN: None |
490 | * | 490 | * |
491 | * DESCRIPTION: Perform the actual execution of a GPE control method. This | 491 | * DESCRIPTION: Perform the actual execution of a GPE control method. This |
492 | * function is called from an invocation of acpi_os_queue_for_execution | 492 | * function is called from an invocation of acpi_os_exece |
493 | * (and therefore does NOT execute at interrupt level) so that | 493 | * (and therefore does NOT execute at interrupt level) so that |
494 | * the control method itself is not executed in the context of | 494 | * the control method itself is not executed in the context of |
495 | * an interrupt handler. | 495 | * an interrupt handler. |
@@ -674,9 +674,9 @@ acpi_ev_gpe_dispatch(struct acpi_gpe_event_info *gpe_event_info, u32 gpe_number) | |||
674 | * Execute the method associated with the GPE | 674 | * Execute the method associated with the GPE |
675 | * NOTE: Level-triggered GPEs are cleared after the method completes. | 675 | * NOTE: Level-triggered GPEs are cleared after the method completes. |
676 | */ | 676 | */ |
677 | status = acpi_os_queue_for_execution(OSD_PRIORITY_GPE, | 677 | status = acpi_os_execute(OSL_GPE_HANDLER, |
678 | acpi_ev_asynch_execute_gpe_method, | 678 | acpi_ev_asynch_execute_gpe_method, |
679 | gpe_event_info); | 679 | gpe_event_info); |
680 | if (ACPI_FAILURE(status)) { | 680 | if (ACPI_FAILURE(status)) { |
681 | ACPI_EXCEPTION((AE_INFO, status, | 681 | ACPI_EXCEPTION((AE_INFO, status, |
682 | "Unable to queue handler for GPE[%2X] - event disabled", | 682 | "Unable to queue handler for GPE[%2X] - event disabled", |