summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2023-08-08 22:58:42 +0000
committerMark Brown <broonie@kernel.org>2023-08-14 13:10:32 +0100
commit80585b0c6aaabc5a4a8273c2e8e084a4f4d7f62f (patch)
tree260b98dccf1599d4d0d5940e6740a6098d39ce1c /sound
parent586685f14d9dd16556449ceaa07c2bdc94cbed1b (diff)
downloadlinux-stable-80585b0c6aaabc5a4a8273c2e8e084a4f4d7f62f.tar.gz
linux-stable-80585b0c6aaabc5a4a8273c2e8e084a4f4d7f62f.tar.bz2
linux-stable-80585b0c6aaabc5a4a8273c2e8e084a4f4d7f62f.zip
ASoC: soc-topology: merge DAI call back functions into ops
ALSA SoC merges DAI call backs into .ops. This patch merge these into one. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/87il9p9m5a.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/soc-topology.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/soc/soc-topology.c b/sound/soc/soc-topology.c
index ad08d4f75a7b..e783055b6c3a 100644
--- a/sound/soc/soc-topology.c
+++ b/sound/soc/soc-topology.c
@@ -1560,6 +1560,10 @@ static void set_dai_flags(struct snd_soc_dai_driver *dai_drv,
1 : 0;
}
+static const struct snd_soc_dai_ops tplg_dai_ops = {
+ .compress_new = snd_soc_new_compress,
+};
+
static int soc_tplg_dai_create(struct soc_tplg *tplg,
struct snd_soc_tplg_pcm *pcm)
{
@@ -1601,7 +1605,7 @@ static int soc_tplg_dai_create(struct soc_tplg *tplg,
}
if (pcm->compress)
- dai_drv->compress_new = snd_soc_new_compress;
+ dai_drv->ops = &tplg_dai_ops;
/* pass control to component driver for optional further init */
ret = soc_tplg_dai_load(tplg, dai_drv, pcm, NULL);