summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorMark Brown2010-08-16 20:26:41 +0200
committerMark Brown2010-08-16 21:21:34 +0200
commitc25edef8dcdd9c193a8457e0cdf53197fd4523e8 (patch)
tree106050451d1c22ab73ad2a9a963174deef1e6289 /sound
parentMerge branch 'for-2.6.36' into for-2.6.37 (diff)
downloadkernel-qcow2-linux-c25edef8dcdd9c193a8457e0cdf53197fd4523e8.tar.gz
kernel-qcow2-linux-c25edef8dcdd9c193a8457e0cdf53197fd4523e8.tar.xz
kernel-qcow2-linux-c25edef8dcdd9c193a8457e0cdf53197fd4523e8.zip
ASoC: Fix WM8580 CLKSEL mask selection
The RX and TX directions were inverted. Reported-by: Seungwhan Youn <claude.youn@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/wm8580.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wm8580.c b/sound/soc/codecs/wm8580.c
index af4517ed2964..42a6699662ee 100644
--- a/sound/soc/codecs/wm8580.c
+++ b/sound/soc/codecs/wm8580.c
@@ -703,12 +703,12 @@ static int wm8580_set_sysclk(struct snd_soc_dai *dai, int clk_id,
int sel, sel_mask, sel_shift;
switch (dai->driver->id) {
- case WM8580_DAI_PAIFTX:
+ case WM8580_DAI_PAIFRX:
sel_mask = 0x3;
sel_shift = 0;
break;
- case WM8580_DAI_PAIFRX:
+ case WM8580_DAI_PAIFTX:
sel_mask = 0xc;
sel_shift = 2;
break;