[alsa-devel] [PATCH] ASoC: fsl-sai: Use snd_soc_dai_init_dma_data()
20 Dec
2013
20 Dec
'13
6:35 a.m.
Makes the code slightly shorter
Signed-off-by: Xiubo Li Li.Xiubo@freescale.com --- sound/soc/fsl/fsl_sai.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sound/soc/fsl/fsl_sai.c b/sound/soc/fsl/fsl_sai.c index 50a797e..9c89f97 100644 --- a/sound/soc/fsl/fsl_sai.c +++ b/sound/soc/fsl/fsl_sai.c @@ -377,8 +377,8 @@ static int fsl_sai_dai_probe(struct snd_soc_dai *cpu_dai) { struct fsl_sai *sai = dev_get_drvdata(cpu_dai->dev);
- cpu_dai->playback_dma_data = &sai->dma_params_tx; - cpu_dai->capture_dma_data = &sai->dma_params_rx; + snd_soc_dai_init_dma_data(cpu_dai, &sai->dma_params_tx, + &sai->dma_params_rx);
snd_soc_dai_set_drvdata(cpu_dai, sai);
--
1.8.4
3980
Age (days ago)
3981
Last active (days ago)
1 comments
2 participants
participants (2)
-
Mark Brown
-
Xiubo Li