Commit f8a9a29c authored by Nikita Yushchenko's avatar Nikita Yushchenko Committed by Mark Brown

ASoC: rsnd: set pm_ops in hibernate-compatible way

Use SET_SYSTEM_SLEEP_PM_OPS() macro instead of direct assignment to
.suspend and .resume fields.

This makes driver working after restore from hibernation.
Signed-off-by: default avatarNikita Yushchenko <nikita.yoush@cogentembedded.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent da263026
...@@ -1569,8 +1569,7 @@ static int rsnd_resume(struct device *dev) ...@@ -1569,8 +1569,7 @@ static int rsnd_resume(struct device *dev)
} }
static const struct dev_pm_ops rsnd_pm_ops = { static const struct dev_pm_ops rsnd_pm_ops = {
.suspend = rsnd_suspend, SET_SYSTEM_SLEEP_PM_OPS(rsnd_suspend, rsnd_resume)
.resume = rsnd_resume,
}; };
static struct platform_driver rsnd_driver = { static struct platform_driver rsnd_driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment