From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Rafael J. Wysocki" Subject: Re: [PATCH v4 2/3] PM / mfd: intel-lpss: Push system sleep callbacks to late/early stages Date: Thu, 28 Sep 2017 22:51:28 +0200 Message-ID: <4467518.bxgQJkVqZ4@aspire.rjw.lan> References: <3023226.l5IfJK6GIc@aspire.rjw.lan> <4332008.kXBLY0K23i@aspire.rjw.lan> <20170928191909.ftpm5ktabe6fnufv@dell> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Return-path: Received: from cloudserver094114.home.net.pl ([79.96.170.134]:55294 "EHLO cloudserver094114.home.net.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751008AbdI1VAp (ORCPT ); Thu, 28 Sep 2017 17:00:45 -0400 In-Reply-To: <20170928191909.ftpm5ktabe6fnufv@dell> Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Lee Jones Cc: linux-pm@vger.kernel.org, Wolfram Sang , linux-i2c@vger.kernel.org, linux-acpi@vger.kernel.org, Kevin Hilman , Jarkko Nikula , Andy Shevchenko , Mika Westerberg , Jisheng Zhang , John Stultz , Guodong Xu , Sumit Semwal , Haojian Zhuang , Johannes Stezenbach , Ulf Hansson , Rajat Jain On Thursday, September 28, 2017 9:19:09 PM CEST Lee Jones wrote: > On Mon, 25 Sep 2017, Rafael J. Wysocki wrote: > > > From: Rafael J. Wysocki > > > > Push the system suspend/resume callbacks of intel-lpss to the late > > suspend/early resume stages to allow child device callbacks to be > > pushed to the late/early stages of suspend/resume too, so as to > > make it possible to avoid resuming the children if they are runtime- > > suspended during system suspend going forward. > > > > Signed-off-by: Rafael J. Wysocki > > Tested-by: Jarkko Nikula > > Tested-by: Mika Westerberg > > Tested-by: Johannes Stezenbach > > Tested-by: Rajat Jain > > --- > > > > v3 -> v4: Added Tested-by tags. > > > > --- > > drivers/mfd/intel-lpss.h | 7 +------ > > 1 file changed, 1 insertion(+), 6 deletions(-) > > > > Index: linux-pm/drivers/mfd/intel-lpss.h > > =================================================================== > > --- linux-pm.orig/drivers/mfd/intel-lpss.h > > +++ linux-pm/drivers/mfd/intel-lpss.h > > Weird. What format is this? > > Don't you use `git format-patch` and `git send-email`? No, I don't. I'm an old-timer, I use quilt. :-) > > @@ -38,12 +38,7 @@ int intel_lpss_resume(struct device *dev > > #ifdef CONFIG_PM_SLEEP > > #define INTEL_LPSS_SLEEP_PM_OPS \ > > .prepare = intel_lpss_prepare, \ > > - .suspend = intel_lpss_suspend, \ > > - .resume = intel_lpss_resume, \ > > - .freeze = intel_lpss_suspend, \ > > - .thaw = intel_lpss_resume, \ > > - .poweroff = intel_lpss_suspend, \ > > - .restore = intel_lpss_resume, > > + SET_LATE_SYSTEM_SLEEP_PM_OPS(intel_lpss_suspend, intel_lpss_resume) > > For the diff: > > Acked-by: Lee Jones Thank you!