aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/acpica/evgpe.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/acpi/acpica/evgpe.c')
-rw-r--r--drivers/acpi/acpica/evgpe.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/evgpe.c b/drivers/acpi/acpica/evgpe.c
index 56de460570d6..7a6a3e6f4be0 100644
--- a/drivers/acpi/acpica/evgpe.c
+++ b/drivers/acpi/acpica/evgpe.c
@@ -452,8 +452,12 @@ static void acpi_ev_asynch_enable_gpe(void *context)
452 } 452 }
453 } 453 }
454 454
455 /* Enable this GPE */ 455 /*
456 (void)acpi_hw_write_gpe_enable_reg(gpe_event_info); 456 * Enable this GPE, conditionally. This means that the GPE will only be
457 * physically enabled if the enable_for_run bit is set in the event_info
458 */
459 (void)acpi_hw_low_set_gpe(gpe_event_info, ACPI_GPE_COND_ENABLE);
460
457 return_VOID; 461 return_VOID;
458} 462}
459 463