[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191204151333.26625-1-daniel.baluta@nxp.com>
Date: Wed, 4 Dec 2019 17:13:33 +0200
From: Daniel Baluta <daniel.baluta@....com>
To: broonie@...nel.org, lgirdwood@...il.com
Cc: tiwai@...e.com, perex@...ex.cz, alsa-devel@...a-project.org,
linux-kernel@...r.kernel.org, Daniel Baluta <daniel.baluta@....com>
Subject: [PATCH] ASoC: soc-core: Set dpcm_playback / dpcm_capture
When converting a normal link to a DPCM link we need
to set dpcm_playback / dpcm_capture otherwise playback/capture
streams will not be created resulting in errors like this:
[ 36.039111] sai1-wm8960-hifi: ASoC: no backend playback stream
Fixes: a655de808cbde ("ASoC: core: Allow topology to override machine driver FE DAI link config")
Signed-off-by: Daniel Baluta <daniel.baluta@....com>
---
sound/soc/soc-core.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index 977a7bfad519..f89cf9d0860c 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -1872,6 +1872,8 @@ static void soc_check_tplg_fes(struct snd_soc_card *card)
/* convert non BE into BE */
dai_link->no_pcm = 1;
+ dai_link->dpcm_playback = 1;
+ dai_link->dpcm_capture = 1;
/* override any BE fixups */
dai_link->be_hw_params_fixup =
--
2.17.1
Powered by blists - more mailing lists