summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorAdam Ford <aford173@gmail.com>2022-05-26 13:21:28 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-06-25 11:46:42 +0200
commit2fa58a760405209e05610a341ed18c1147453097 (patch)
treeb93b887b06b8871da8da2d35235ece46e99d3235 /sound
parent1ac5efee33f29e704226506d429b84575a5d66f8 (diff)
downloadlinux-rt-2fa58a760405209e05610a341ed18c1147453097.tar.gz
ASoC: wm8962: Fix suspend while playing music
[ Upstream commit d1f5272c0f7d2e53c6f2480f46725442776f5f78 ] If the audio CODEC is playing sound when the system is suspended, it can be left in a state which throws the following error: wm8962 3-001a: ASoC: error at soc_component_read_no_lock on wm8962.3-001a: -16 Once this error has occurred, the audio will not work again until rebooted. Fix this by configuring SET_SYSTEM_SLEEP_PM_OPS. Signed-off-by: Adam Ford <aford173@gmail.com> Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com> Link: https://lore.kernel.org/r/20220526182129.538472-1-aford173@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/wm8962.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c
index 0e8008d38161..d46881f96c16 100644
--- a/sound/soc/codecs/wm8962.c
+++ b/sound/soc/codecs/wm8962.c
@@ -3861,6 +3861,7 @@ static int wm8962_runtime_suspend(struct device *dev)
#endif
static const struct dev_pm_ops wm8962_pm = {
+ SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend, pm_runtime_force_resume)
SET_RUNTIME_PM_OPS(wm8962_runtime_suspend, wm8962_runtime_resume, NULL)
};