|
@@ -793,8 +793,9 @@ acpi_install_gpe_handler(acpi_handle gpe_device,
|
|
* automatically during initialization, in which case it has to be
|
|
* automatically during initialization, in which case it has to be
|
|
* disabled now to avoid spurious execution of the handler.
|
|
* disabled now to avoid spurious execution of the handler.
|
|
*/
|
|
*/
|
|
- if ((handler->original_flags & ACPI_GPE_DISPATCH_METHOD)
|
|
|
|
- && gpe_event_info->runtime_count) {
|
|
|
|
|
|
+ if (((handler->original_flags & ACPI_GPE_DISPATCH_METHOD) ||
|
|
|
|
+ (handler->original_flags & ACPI_GPE_DISPATCH_NOTIFY)) &&
|
|
|
|
+ gpe_event_info->runtime_count) {
|
|
handler->originally_enabled = TRUE;
|
|
handler->originally_enabled = TRUE;
|
|
(void)acpi_ev_remove_gpe_reference(gpe_event_info);
|
|
(void)acpi_ev_remove_gpe_reference(gpe_event_info);
|
|
|
|
|
|
@@ -908,7 +909,8 @@ acpi_remove_gpe_handler(acpi_handle gpe_device,
|
|
* enabled, it should be enabled at this point to restore the
|
|
* enabled, it should be enabled at this point to restore the
|
|
* post-initialization configuration.
|
|
* post-initialization configuration.
|
|
*/
|
|
*/
|
|
- if ((handler->original_flags & ACPI_GPE_DISPATCH_METHOD) &&
|
|
|
|
|
|
+ if (((handler->original_flags & ACPI_GPE_DISPATCH_METHOD) ||
|
|
|
|
+ (handler->original_flags & ACPI_GPE_DISPATCH_NOTIFY)) &&
|
|
handler->originally_enabled) {
|
|
handler->originally_enabled) {
|
|
(void)acpi_ev_add_gpe_reference(gpe_event_info);
|
|
(void)acpi_ev_add_gpe_reference(gpe_event_info);
|
|
}
|
|
}
|