ACPI / EC: disable GPE before removing GPE handler

Adjust the order of disabling the EC GPE and removing its handler to
avoid unhandled events.

Signed-off-by: Lan Tianyu <tianyu.lan@intel.com>
[rjw: Changelog]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Lan Tianyu 2013-12-12 18:08:52 +08:00 committed by Rafael J. Wysocki
parent 8eaa29f92a
commit 42b946bb35
1 changed files with 1 additions and 1 deletions

View File

@ -779,9 +779,9 @@ static int ec_install_handlers(struct acpi_ec *ec)
pr_err("Fail in evaluating the _REG object" pr_err("Fail in evaluating the _REG object"
" of EC device. Broken bios is suspected.\n"); " of EC device. Broken bios is suspected.\n");
} else { } else {
acpi_disable_gpe(NULL, ec->gpe);
acpi_remove_gpe_handler(NULL, ec->gpe, acpi_remove_gpe_handler(NULL, ec->gpe,
&acpi_ec_gpe_handler); &acpi_ec_gpe_handler);
acpi_disable_gpe(NULL, ec->gpe);
return -ENODEV; return -ENODEV;
} }
} }