diff options
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/pxa/imote2.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/sound/soc/pxa/imote2.c b/sound/soc/pxa/imote2.c index 97d3aecfc203..dc905aec6294 100644 --- a/sound/soc/pxa/imote2.c +++ b/sound/soc/pxa/imote2.c | |||
@@ -30,20 +30,6 @@ static int imote2_asoc_hw_params(struct snd_pcm_substream *substream, | |||
30 | break; | 30 | break; |
31 | } | 31 | } |
32 | 32 | ||
33 | /* set codec DAI configuration */ | ||
34 | ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S | ||
35 | | SND_SOC_DAIFMT_NB_NF | ||
36 | | SND_SOC_DAIFMT_CBS_CFS); | ||
37 | if (ret < 0) | ||
38 | return ret; | ||
39 | |||
40 | /* CPU should be clock master */ | ||
41 | ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S | ||
42 | | SND_SOC_DAIFMT_NB_NF | ||
43 | | SND_SOC_DAIFMT_CBS_CFS); | ||
44 | if (ret < 0) | ||
45 | return ret; | ||
46 | |||
47 | ret = snd_soc_dai_set_sysclk(codec_dai, 0, clk, | 33 | ret = snd_soc_dai_set_sysclk(codec_dai, 0, clk, |
48 | SND_SOC_CLOCK_IN); | 34 | SND_SOC_CLOCK_IN); |
49 | if (ret < 0) | 35 | if (ret < 0) |
@@ -67,6 +53,8 @@ static struct snd_soc_dai_link imote2_dai = { | |||
67 | .codec_dai_name = "wm8940-hifi", | 53 | .codec_dai_name = "wm8940-hifi", |
68 | .platform_name = "pxa-pcm-audio", | 54 | .platform_name = "pxa-pcm-audio", |
69 | .codec_name = "wm8940-codec.0-0034", | 55 | .codec_name = "wm8940-codec.0-0034", |
56 | .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF | | ||
57 | SND_SOC_DAIFMT_CBS_CFS, | ||
70 | .ops = &imote2_asoc_ops, | 58 | .ops = &imote2_asoc_ops, |
71 | }; | 59 | }; |
72 | 60 | ||