提交 4964a26d 编写于 作者: U Ulf Hansson 提交者: Mark Brown

spi/pl022: Activate resourses before deactivate them in suspend

To be able to deactivate resourses in suspend, the resourses must
first be surely active. This is done with a pm_runtime_get_sync.
Once the resourses are restored to active state again in resume,
the runtime pm usage count can be decreased with a pm_runtime_put.
Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 0df34994
......@@ -2349,6 +2349,8 @@ static int pl022_suspend(struct device *dev)
dev_warn(dev, "cannot suspend master\n");
return ret;
}
pm_runtime_get_sync(dev);
pl022_suspend_resources(pl022);
dev_dbg(dev, "suspended\n");
......@@ -2361,6 +2363,7 @@ static int pl022_resume(struct device *dev)
int ret;
pl022_resume_resources(pl022);
pm_runtime_put(dev);
/* Start the queue running */
ret = spi_master_resume(pl022->master);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册