From mboxrd@z Thu Jan 1 00:00:00 1970 From: vinod.koul@intel.com (Vinod Koul) Date: Wed, 7 May 2014 15:32:49 +0530 Subject: [PATCH] dma: ste_dma40: Convert to the late system PM callbacks In-Reply-To: <1399453437-24195-1-git-send-email-ulf.hansson@linaro.org> References: <1399453437-24195-1-git-send-email-ulf.hansson@linaro.org> Message-ID: <20140507100249.GA9774@intel.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Wed, May 07, 2014 at 11:03:57AM +0200, Ulf Hansson wrote: > Clients may still be active in the early phase of system PM, thus we > need to move the suspend operations to the late system PM phase. Applied, thanks -- ~Vinod > > Signed-off-by: Ulf Hansson > --- > drivers/dma/ste_dma40.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/dma/ste_dma40.c b/drivers/dma/ste_dma40.c > index b539fc9..c798445 100644 > --- a/drivers/dma/ste_dma40.c > +++ b/drivers/dma/ste_dma40.c > @@ -3051,7 +3051,7 @@ static int dma40_runtime_resume(struct device *dev) > #endif > > static const struct dev_pm_ops dma40_pm_ops = { > - SET_SYSTEM_SLEEP_PM_OPS(dma40_suspend, dma40_resume) > + SET_LATE_SYSTEM_SLEEP_PM_OPS(dma40_suspend, dma40_resume) > SET_PM_RUNTIME_PM_OPS(dma40_runtime_suspend, > dma40_runtime_resume, > NULL) > -- > 1.7.9.5 > --