From: Rafael J. Wysocki Date: Tue, 9 Jun 2015 23:32:38 +0000 (+0200) Subject: ACPI / PM: Add missing pm_generic_complete() invocation X-Git-Tag: v4.1.3~42 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=5ab4a6010600c24c37f5178d6da981e18cbb090a;p=users%2Fjedix%2Flinux-maple.git ACPI / PM: Add missing pm_generic_complete() invocation commit 3d56402d3fa8d10749eeb36293dd1992bd5ad0c3 upstream. Add missing invocation of pm_generic_complete() to acpi_subsys_complete() to allow ->complete callbacks provided by the drivers of devices using the ACPI PM domain to be executed during system resume. Fixes: f25c0ae2b4c4 (ACPI / PM: Avoid resuming devices in ACPI PM domain during system suspend) Signed-off-by: Rafael J. Wysocki Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c index 735db11a9b001..8217e0bda60f6 100644 --- a/drivers/acpi/device_pm.c +++ b/drivers/acpi/device_pm.c @@ -953,6 +953,7 @@ EXPORT_SYMBOL_GPL(acpi_subsys_prepare); */ void acpi_subsys_complete(struct device *dev) { + pm_generic_complete(dev); /* * If the device had been runtime-suspended before the system went into * the sleep state it is going out of and it has never been resumed till