diff options
-rw-r--r-- | sound/soc/davinci/davinci-evm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/soc/davinci/davinci-evm.c b/sound/soc/davinci/davinci-evm.c index d87b91179cc8..5c041bf05f31 100644 --- a/sound/soc/davinci/davinci-evm.c +++ b/sound/soc/davinci/davinci-evm.c | |||
@@ -38,12 +38,14 @@ static int evm_hw_params(struct snd_pcm_substream *substream, | |||
38 | 38 | ||
39 | /* set codec DAI configuration */ | 39 | /* set codec DAI configuration */ |
40 | ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S | | 40 | ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S | |
41 | SND_SOC_DAIFMT_CBM_CFM); | 41 | SND_SOC_DAIFMT_CBM_CFM | |
42 | SND_SOC_DAIFMT_NB_NF); | ||
42 | if (ret < 0) | 43 | if (ret < 0) |
43 | return ret; | 44 | return ret; |
44 | 45 | ||
45 | /* set cpu DAI configuration */ | 46 | /* set cpu DAI configuration */ |
46 | ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_CBM_CFM | | 47 | ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S | |
48 | SND_SOC_DAIFMT_CBM_CFM | | ||
47 | SND_SOC_DAIFMT_IB_NF); | 49 | SND_SOC_DAIFMT_IB_NF); |
48 | if (ret < 0) | 50 | if (ret < 0) |
49 | return ret; | 51 | return ret; |