[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220526182129.538472-1-aford173@gmail.com>
Date: Thu, 26 May 2022 13:21:28 -0500
From: Adam Ford <aford173@...il.com>
To: alsa-devel@...a-project.org
Cc: aford@...conembedded.com, Adam Ford <aford173@...il.com>,
Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>,
Jaroslav Kysela <perex@...ex.cz>,
Takashi Iwai <tiwai@...e.com>,
Charles Keepax <ckeepax@...nsource.cirrus.com>,
Stephen Kitt <steve@....org>,
Geert Uytterhoeven <geert+renesas@...der.be>,
Minghao Chi <chi.minghao@....com.cn>,
patches@...nsource.cirrus.com (open list:WOLFSON MICROELECTRONICS
DRIVERS), linux-kernel@...r.kernel.org (open list)
Subject: [PATCH] ASoC: wm8962: Fix suspend while playing music
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@...il.com>
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c
index 34cd5a2a997c..5cca89364280 100644
--- a/sound/soc/codecs/wm8962.c
+++ b/sound/soc/codecs/wm8962.c
@@ -3868,6 +3868,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)
};
--
2.25.1
Powered by blists - more mailing lists