aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Simion <[email protected]>2024-09-24 11:12:38 +0300
committerMark Brown <[email protected]>2024-09-24 13:34:28 +0200
commit09cfc6a532d249a51d3af5022d37ebbe9c3d31f6 (patch)
tree0018a9aa4b427a845a5e79b251a82e3c35a0ab1f
parent01e709aeaf913a4d0e04f9957d399cf6fc3b5455 (diff)
ASoC: atmel: mchp-pdmc: Skip ALSA restoration if substream runtime is uninitialized
Update the driver to prevent alsa-restore.service from failing when reading data from /var/lib/alsa/asound.state at boot. Ensure that the restoration of ALSA mixer configurations is skipped if substream->runtime is NULL. Fixes: 50291652af52 ("ASoC: atmel: mchp-pdmc: add PDMC driver") Signed-off-by: Andrei Simion <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Mark Brown <[email protected]>
-rw-r--r--sound/soc/atmel/mchp-pdmc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/soc/atmel/mchp-pdmc.c b/sound/soc/atmel/mchp-pdmc.c
index 939cd44ebc8a..06dc3c48e7e8 100644
--- a/sound/soc/atmel/mchp-pdmc.c
+++ b/sound/soc/atmel/mchp-pdmc.c
@@ -302,6 +302,9 @@ static int mchp_pdmc_chmap_ctl_put(struct snd_kcontrol *kcontrol,
if (!substream)
return -ENODEV;
+ if (!substream->runtime)
+ return 0; /* just for avoiding error from alsactl restore */
+
map = mchp_pdmc_chmap_get(substream, info);
if (!map)
return -EINVAL;