summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorAlex Gonzalez <alex.gonzalez@digi.com>2011-11-23 10:47:11 +0100
committerAlex Gonzalez <alex.gonzalez@digi.com>2011-11-23 11:02:08 +0100
commit1d8349f7e60f22c3935298280501e8397af51be8 (patch)
tree4e5ed15f4c4fadf92ba97e05ecadf4779a71b6fb /sound
parente01a9557303be415f2a23a1744e065460a1391ed (diff)
Revert "cc9m2443: wm8753 DAI configuration"
This reverts commit 5b0a45a8d0ed2d3afe76e85405c28733d13006cf. This commit fixed the inverted playback but not the inverted recording.
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/s3c24xx/cc9m2443js_wm8753.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/s3c24xx/cc9m2443js_wm8753.c b/sound/soc/s3c24xx/cc9m2443js_wm8753.c
index e0bf38ef42b3..c7a7fe7331a5 100644
--- a/sound/soc/s3c24xx/cc9m2443js_wm8753.c
+++ b/sound/soc/s3c24xx/cc9m2443js_wm8753.c
@@ -113,14 +113,14 @@ static int cc9m2443js_hifi_hw_params(struct snd_pcm_substream *substream,
/* REQUIRED: Set codec DAI configuration (normal bclk and frm ) and as slave */
ret = snd_soc_dai_set_fmt(codec_dai,
- SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_IF |
+ SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
SND_SOC_DAIFMT_CBS_CFS);
if (ret < 0)
return ret;
/* REQUIRED: Set cpu DAI configuration (normal bclk and frm) and CPU as master */
ret = snd_soc_dai_set_fmt(cpu_dai,
- SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_IF |
+ SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
SND_SOC_DAIFMT_CBS_CFS);
if (ret < 0)
return ret;