diff options
Diffstat (limited to 'sound/soc/omap/omap3evm.c')
-rw-r--r-- | sound/soc/omap/omap3evm.c | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/sound/soc/omap/omap3evm.c b/sound/soc/omap/omap3evm.c index 0daa04469836..bf9ae2a6f901 100644 --- a/sound/soc/omap/omap3evm.c +++ b/sound/soc/omap/omap3evm.c | |||
@@ -36,29 +36,8 @@ static int omap3evm_hw_params(struct snd_pcm_substream *substream, | |||
36 | { | 36 | { |
37 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 37 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
38 | struct snd_soc_dai *codec_dai = rtd->codec_dai; | 38 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
39 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; | ||
40 | int ret; | 39 | int ret; |
41 | 40 | ||
42 | /* Set codec DAI configuration */ | ||
43 | ret = snd_soc_dai_set_fmt(codec_dai, | ||
44 | SND_SOC_DAIFMT_I2S | | ||
45 | SND_SOC_DAIFMT_NB_NF | | ||
46 | SND_SOC_DAIFMT_CBM_CFM); | ||
47 | if (ret < 0) { | ||
48 | printk(KERN_ERR "Can't set codec DAI configuration\n"); | ||
49 | return ret; | ||
50 | } | ||
51 | |||
52 | /* Set cpu DAI configuration */ | ||
53 | ret = snd_soc_dai_set_fmt(cpu_dai, | ||
54 | SND_SOC_DAIFMT_I2S | | ||
55 | SND_SOC_DAIFMT_NB_NF | | ||
56 | SND_SOC_DAIFMT_CBM_CFM); | ||
57 | if (ret < 0) { | ||
58 | printk(KERN_ERR "Can't set cpu DAI configuration\n"); | ||
59 | return ret; | ||
60 | } | ||
61 | |||
62 | /* Set the codec system clock for DAC and ADC */ | 41 | /* Set the codec system clock for DAC and ADC */ |
63 | ret = snd_soc_dai_set_sysclk(codec_dai, 0, 26000000, | 42 | ret = snd_soc_dai_set_sysclk(codec_dai, 0, 26000000, |
64 | SND_SOC_CLOCK_IN); | 43 | SND_SOC_CLOCK_IN); |
@@ -82,6 +61,8 @@ static struct snd_soc_dai_link omap3evm_dai = { | |||
82 | .codec_dai_name = "twl4030-hifi", | 61 | .codec_dai_name = "twl4030-hifi", |
83 | .platform_name = "omap-pcm-audio", | 62 | .platform_name = "omap-pcm-audio", |
84 | .codec_name = "twl4030-codec", | 63 | .codec_name = "twl4030-codec", |
64 | .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF | | ||
65 | SND_SOC_DAIFMT_CBM_CFM, | ||
85 | .ops = &omap3evm_ops, | 66 | .ops = &omap3evm_ops, |
86 | }; | 67 | }; |
87 | 68 | ||