|
@@ -909,8 +909,7 @@ static void acpi_ec_start(struct acpi_ec *ec, bool resuming)
|
|
|
if (!resuming) {
|
|
|
acpi_ec_submit_request(ec);
|
|
|
ec_dbg_ref(ec, "Increase driver");
|
|
|
- } else
|
|
|
- __acpi_ec_enable_event(ec);
|
|
|
+ }
|
|
|
ec_log_drv("EC started");
|
|
|
}
|
|
|
spin_unlock_irqrestore(&ec->lock, flags);
|
|
@@ -965,19 +964,6 @@ void acpi_ec_block_transactions(void)
|
|
|
}
|
|
|
|
|
|
void acpi_ec_unblock_transactions(void)
|
|
|
-{
|
|
|
- struct acpi_ec *ec = first_ec;
|
|
|
-
|
|
|
- if (!ec)
|
|
|
- return;
|
|
|
-
|
|
|
- /* Allow transactions to be carried out again */
|
|
|
- acpi_ec_start(ec, true);
|
|
|
-
|
|
|
- acpi_ec_enable_event(ec);
|
|
|
-}
|
|
|
-
|
|
|
-void acpi_ec_unblock_transactions_early(void)
|
|
|
{
|
|
|
/*
|
|
|
* Allow transactions to happen again (this function is called from
|
|
@@ -1706,10 +1692,20 @@ static int acpi_ec_resume_noirq(struct device *dev)
|
|
|
acpi_ec_leave_noirq(ec);
|
|
|
return 0;
|
|
|
}
|
|
|
+
|
|
|
+static int acpi_ec_resume(struct device *dev)
|
|
|
+{
|
|
|
+ struct acpi_ec *ec =
|
|
|
+ acpi_driver_data(to_acpi_device(dev));
|
|
|
+
|
|
|
+ acpi_ec_enable_event(ec);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
#endif
|
|
|
|
|
|
static const struct dev_pm_ops acpi_ec_pm = {
|
|
|
SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(acpi_ec_suspend_noirq, acpi_ec_resume_noirq)
|
|
|
+ SET_SYSTEM_SLEEP_PM_OPS(NULL, acpi_ec_resume)
|
|
|
};
|
|
|
|
|
|
static int param_set_event_clearing(const char *val, struct kernel_param *kp)
|