diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-12-29 20:20:40 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-12-29 21:00:30 -0500 |
commit | 87063dfcea80316ff4647b9906d146b5c7969766 (patch) | |
tree | 3e127903806c0d97421ee603483bea60b67fcfb7 /sound/soc/pxa | |
parent | fe366d067409d7633ca1186b533289828e5f4161 (diff) |
ASoC: Use dai_fmt in poodle machine driver
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/pxa')
-rw-r--r-- | sound/soc/pxa/poodle.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/sound/soc/pxa/poodle.c b/sound/soc/pxa/poodle.c index a321b4df534c..fd0ed10c6fe7 100644 --- a/sound/soc/pxa/poodle.c +++ b/sound/soc/pxa/poodle.c | |||
@@ -121,18 +121,6 @@ static int poodle_hw_params(struct snd_pcm_substream *substream, | |||
121 | break; | 121 | break; |
122 | } | 122 | } |
123 | 123 | ||
124 | /* set codec DAI configuration */ | ||
125 | ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S | | ||
126 | SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS); | ||
127 | if (ret < 0) | ||
128 | return ret; | ||
129 | |||
130 | /* set cpu DAI configuration */ | ||
131 | ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S | | ||
132 | SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBS_CFS); | ||
133 | if (ret < 0) | ||
134 | return ret; | ||
135 | |||
136 | /* set the codec system clock for DAC and ADC */ | 124 | /* set the codec system clock for DAC and ADC */ |
137 | ret = snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK_XTAL, clk, | 125 | ret = snd_soc_dai_set_sysclk(codec_dai, WM8731_SYSCLK_XTAL, clk, |
138 | SND_SOC_CLOCK_IN); | 126 | SND_SOC_CLOCK_IN); |
@@ -263,6 +251,8 @@ static struct snd_soc_dai_link poodle_dai = { | |||
263 | .platform_name = "pxa-pcm-audio", | 251 | .platform_name = "pxa-pcm-audio", |
264 | .codec_name = "wm8731.0-001b", | 252 | .codec_name = "wm8731.0-001b", |
265 | .init = poodle_wm8731_init, | 253 | .init = poodle_wm8731_init, |
254 | .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF | | ||
255 | SND_SOC_DAIFMT_CBS_CFS, | ||
266 | .ops = &poodle_ops, | 256 | .ops = &poodle_ops, |
267 | }; | 257 | }; |
268 | 258 | ||