diff options
author | Liam Girdwood <lg@opensource.wolfsonmicro.com> | 2008-07-07 11:07:42 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-07-10 03:32:37 -0400 |
commit | 9cb132d743cf39b3bbe4288e9035217e7237a0bb (patch) | |
tree | 6afa0bf419181ebf8fda2d6d26eddcbd58cabe24 /sound/soc/davinci/davinci-i2s.c | |
parent | d37ae539a1d76da8fe5a939ce8b6d818501c8716 (diff) |
ALSA: asoc: davinci - merge structs snd_soc_codec_dai and snd_soc_cpu_dai.
This patch merges struct snd_soc_codec_dai and struct
snd_soc_cpu_dai into struct snd_soc_dai for the DaVinci platform.
Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound/soc/davinci/davinci-i2s.c')
-rw-r--r-- | sound/soc/davinci/davinci-i2s.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sound/soc/davinci/davinci-i2s.c b/sound/soc/davinci/davinci-i2s.c index c3b545ccff72..5ebf1ff71c4c 100644 --- a/sound/soc/davinci/davinci-i2s.c +++ b/sound/soc/davinci/davinci-i2s.c | |||
@@ -147,7 +147,7 @@ static void davinci_mcbsp_stop(struct snd_pcm_substream *substream) | |||
147 | static int davinci_i2s_startup(struct snd_pcm_substream *substream) | 147 | static int davinci_i2s_startup(struct snd_pcm_substream *substream) |
148 | { | 148 | { |
149 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 149 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
150 | struct snd_soc_cpu_dai *cpu_dai = rtd->dai->cpu_dai; | 150 | struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; |
151 | struct davinci_mcbsp_dev *dev = rtd->dai->cpu_dai->private_data; | 151 | struct davinci_mcbsp_dev *dev = rtd->dai->cpu_dai->private_data; |
152 | 152 | ||
153 | cpu_dai->dma_data = dev->dma_params[substream->stream]; | 153 | cpu_dai->dma_data = dev->dma_params[substream->stream]; |
@@ -155,7 +155,7 @@ static int davinci_i2s_startup(struct snd_pcm_substream *substream) | |||
155 | return 0; | 155 | return 0; |
156 | } | 156 | } |
157 | 157 | ||
158 | static int davinci_i2s_set_dai_fmt(struct snd_soc_cpu_dai *cpu_dai, | 158 | static int davinci_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai, |
159 | unsigned int fmt) | 159 | unsigned int fmt) |
160 | { | 160 | { |
161 | struct davinci_mcbsp_dev *dev = cpu_dai->private_data; | 161 | struct davinci_mcbsp_dev *dev = cpu_dai->private_data; |
@@ -296,11 +296,11 @@ static int davinci_i2s_trigger(struct snd_pcm_substream *substream, int cmd) | |||
296 | } | 296 | } |
297 | 297 | ||
298 | static int davinci_i2s_probe(struct platform_device *pdev, | 298 | static int davinci_i2s_probe(struct platform_device *pdev, |
299 | struct snd_soc_cpu_dai *dai) | 299 | struct snd_soc_dai *dai) |
300 | { | 300 | { |
301 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); | 301 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
302 | struct snd_soc_machine *machine = socdev->machine; | 302 | struct snd_soc_machine *machine = socdev->machine; |
303 | struct snd_soc_cpu_dai *cpu_dai = machine->dai_link[pdev->id].cpu_dai; | 303 | struct snd_soc_dai *cpu_dai = machine->dai_link[pdev->id].cpu_dai; |
304 | struct davinci_mcbsp_dev *dev; | 304 | struct davinci_mcbsp_dev *dev; |
305 | struct resource *mem, *ioarea; | 305 | struct resource *mem, *ioarea; |
306 | struct evm_snd_platform_data *pdata; | 306 | struct evm_snd_platform_data *pdata; |
@@ -358,11 +358,11 @@ err_release_region: | |||
358 | } | 358 | } |
359 | 359 | ||
360 | static void davinci_i2s_remove(struct platform_device *pdev, | 360 | static void davinci_i2s_remove(struct platform_device *pdev, |
361 | struct snd_soc_cpu_dai *dai) | 361 | struct snd_soc_dai *dai) |
362 | { | 362 | { |
363 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); | 363 | struct snd_soc_device *socdev = platform_get_drvdata(pdev); |
364 | struct snd_soc_machine *machine = socdev->machine; | 364 | struct snd_soc_machine *machine = socdev->machine; |
365 | struct snd_soc_cpu_dai *cpu_dai = machine->dai_link[pdev->id].cpu_dai; | 365 | struct snd_soc_dai *cpu_dai = machine->dai_link[pdev->id].cpu_dai; |
366 | struct davinci_mcbsp_dev *dev = cpu_dai->private_data; | 366 | struct davinci_mcbsp_dev *dev = cpu_dai->private_data; |
367 | struct resource *mem; | 367 | struct resource *mem; |
368 | 368 | ||
@@ -378,7 +378,7 @@ static void davinci_i2s_remove(struct platform_device *pdev, | |||
378 | 378 | ||
379 | #define DAVINCI_I2S_RATES SNDRV_PCM_RATE_8000_96000 | 379 | #define DAVINCI_I2S_RATES SNDRV_PCM_RATE_8000_96000 |
380 | 380 | ||
381 | struct snd_soc_cpu_dai davinci_i2s_dai = { | 381 | struct snd_soc_dai davinci_i2s_dai = { |
382 | .name = "davinci-i2s", | 382 | .name = "davinci-i2s", |
383 | .id = 0, | 383 | .id = 0, |
384 | .type = SND_SOC_DAI_I2S, | 384 | .type = SND_SOC_DAI_I2S, |