summaryrefslogtreecommitdiffstats
path: root/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.6/0060-ASoC-wm8994-Fix-typo-in-VMID-ramp-setting.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.6/0060-ASoC-wm8994-Fix-typo-in-VMID-ramp-setting.patch')
-rw-r--r--recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.6/0060-ASoC-wm8994-Fix-typo-in-VMID-ramp-setting.patch31
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.6/0060-ASoC-wm8994-Fix-typo-in-VMID-ramp-setting.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.6/0060-ASoC-wm8994-Fix-typo-in-VMID-ramp-setting.patch
new file mode 100644
index 00000000..d4b7d717
--- /dev/null
+++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/3.2.6/0060-ASoC-wm8994-Fix-typo-in-VMID-ramp-setting.patch
@@ -0,0 +1,31 @@
1From a79cee16dfd9206eb087fbd25767c4d8dec0b0c5 Mon Sep 17 00:00:00 2001
2From: Mark Brown <broonie@opensource.wolfsonmicro.com>
3Date: Tue, 7 Feb 2012 17:24:19 +0000
4Subject: [PATCH 60/87] ASoC: wm8994: Fix typo in VMID ramp setting
5
6commit f647e1526fd6c7c8ab720781c40d11e11f930e93 upstream.
7
8The VMID ramp rate is supposed to be 0x3, not 11b. Fix that.
9
10Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
11Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12---
13 sound/soc/codecs/wm8994.c | 2 +-
14 1 files changed, 1 insertions(+), 1 deletions(-)
15
16diff --git a/sound/soc/codecs/wm8994.c b/sound/soc/codecs/wm8994.c
17index a3d6bd8..6e502af 100644
18--- a/sound/soc/codecs/wm8994.c
19+++ b/sound/soc/codecs/wm8994.c
20@@ -744,7 +744,7 @@ static void vmid_reference(struct snd_soc_codec *codec)
21 WM8994_VMID_RAMP_MASK,
22 WM8994_STARTUP_BIAS_ENA |
23 WM8994_VMID_BUF_ENA |
24- (0x11 << WM8994_VMID_RAMP_SHIFT));
25+ (0x3 << WM8994_VMID_RAMP_SHIFT));
26
27 /* Main bias enable, VMID=2x40k */
28 snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_1,
29--
301.7.7.4
31