summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorSusan Gao <sgao@opensource.wolfsonmicro.com>2011-09-29 11:08:18 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2011-11-11 09:43:20 -0800
commit427dd3016f4dea9153207f8f5cac4fcf285bdf54 (patch)
tree3e1289796ea37f53f1e2c988b1bdb3ff266519e7 /sound
parentfe0c608d1d02d7618a8404fd740b5fb1124605de (diff)
ASoC: Fix a bug in WM8962 DSP_A and DSP_B settings
commit fbc7c62a3ff831aef24894b7982cd1adb2b7e070 upstream. Signed-off-by: Susan Gao <sgao@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmico.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/wm8962.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c
index 1af315778eba..365683b5a7a4 100644
--- a/sound/soc/codecs/wm8962.c
+++ b/sound/soc/codecs/wm8962.c
@@ -3059,9 +3059,9 @@ static int wm8962_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt)
int aif0 = 0;
switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
- case SND_SOC_DAIFMT_DSP_A:
- aif0 |= WM8962_LRCLK_INV;
case SND_SOC_DAIFMT_DSP_B:
+ aif0 |= WM8962_LRCLK_INV | 3;
+ case SND_SOC_DAIFMT_DSP_A:
aif0 |= 3;
switch (fmt & SND_SOC_DAIFMT_INV_MASK) {