aboutsummaryrefslogtreecommitdiff
path: root/sound/soc/spear
diff options
context:
space:
mode:
authorGravatar Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> 2023-01-31 02:00:29 +0000
committerGravatar Mark Brown <broonie@kernel.org> 2023-01-31 11:04:59 +0000
commitc4d78c4127f9371dcfc77e71417addddcc5a9533 (patch)
tree80cf93819bf9d81f0ba2bd56c84980f9a2012c87 /sound/soc/spear
parentASoC: cirrus: use helper function (diff)
downloadlinux-c4d78c4127f9371dcfc77e71417addddcc5a9533.tar.gz
linux-c4d78c4127f9371dcfc77e71417addddcc5a9533.tar.bz2
linux-c4d78c4127f9371dcfc77e71417addddcc5a9533.zip
ASoC: spear: use helper function
Current ASoC has many helper function. This patch use it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/87wn53ea4i.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/spear')
-rw-r--r--sound/soc/spear/spdif_out.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/spear/spdif_out.c b/sound/soc/spear/spdif_out.c
index fb107c5790ad..469373d1bb41 100644
--- a/sound/soc/spear/spdif_out.c
+++ b/sound/soc/spear/spdif_out.c
@@ -244,7 +244,8 @@ static int spdif_soc_dai_probe(struct snd_soc_dai *dai)
struct spdif_out_dev *host = snd_soc_dai_get_drvdata(dai);
host->dma_params_tx.filter_data = &host->dma_params;
- dai->playback_dma_data = &host->dma_params_tx;
+
+ snd_soc_dai_dma_data_set_playback(dai, &host->dma_params_tx);
return snd_soc_add_dai_controls(dai, spdif_out_controls,
ARRAY_SIZE(spdif_out_controls));