diff options
Diffstat (limited to 'sound/soc/omap/n810.c')
-rw-r--r-- | sound/soc/omap/n810.c | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/sound/soc/omap/n810.c b/sound/soc/omap/n810.c index 62e292f49313..c10d3566ab1f 100644 --- a/sound/soc/omap/n810.c +++ b/sound/soc/omap/n810.c | |||
@@ -115,25 +115,8 @@ static int n810_hw_params(struct snd_pcm_substream *substream, | |||
115 | { | 115 | { |
116 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 116 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
117 | struct snd_soc_dai *codec_dai = rtd->codec_dai; | 117 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
118 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; | ||
119 | int err; | 118 | int err; |
120 | 119 | ||
121 | /* Set codec DAI configuration */ | ||
122 | err = snd_soc_dai_set_fmt(codec_dai, | ||
123 | SND_SOC_DAIFMT_I2S | | ||
124 | SND_SOC_DAIFMT_NB_NF | | ||
125 | SND_SOC_DAIFMT_CBM_CFM); | ||
126 | if (err < 0) | ||
127 | return err; | ||
128 | |||
129 | /* Set cpu DAI configuration */ | ||
130 | err = snd_soc_dai_set_fmt(cpu_dai, | ||
131 | SND_SOC_DAIFMT_I2S | | ||
132 | SND_SOC_DAIFMT_NB_NF | | ||
133 | SND_SOC_DAIFMT_CBM_CFM); | ||
134 | if (err < 0) | ||
135 | return err; | ||
136 | |||
137 | /* Set the codec system clock for DAC and ADC */ | 120 | /* Set the codec system clock for DAC and ADC */ |
138 | err = snd_soc_dai_set_sysclk(codec_dai, 0, 12000000, | 121 | err = snd_soc_dai_set_sysclk(codec_dai, 0, 12000000, |
139 | SND_SOC_CLOCK_IN); | 122 | SND_SOC_CLOCK_IN); |
@@ -312,6 +295,8 @@ static struct snd_soc_dai_link n810_dai = { | |||
312 | .platform_name = "omap-pcm-audio", | 295 | .platform_name = "omap-pcm-audio", |
313 | .codec_name = "tlv320aic3x-codec.2-0018", | 296 | .codec_name = "tlv320aic3x-codec.2-0018", |
314 | .codec_dai_name = "tlv320aic3x-hifi", | 297 | .codec_dai_name = "tlv320aic3x-hifi", |
298 | .dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF | | ||
299 | SND_SOC_DAIFMT_CBM_CFM, | ||
315 | .init = n810_aic33_init, | 300 | .init = n810_aic33_init, |
316 | .ops = &n810_ops, | 301 | .ops = &n810_ops, |
317 | }; | 302 | }; |