aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-02-14 01:00:47 -0500
committerLuis Henriques <luis.henriques@canonical.com>2012-03-26 05:26:34 -0400
commit8db72667de592d78dc36d7befb5a6b9403ed3521 (patch)
tree89cadea2840ca83fe0e9f6f4f1a718cffb9ecb26 /sound/soc/codecs
parentf514f877350d6735ce8e81c2ed4d9e13391366aa (diff)
ASoC: wm8962: Fix sidetone enumeration texts
BugLink: http://bugs.launchpad.net/bugs/954576 commit 31794bc37bf2db84f085da52b72bfba65739b2d2 upstream. The sidetone enumeration texts have left and right swapped. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'sound/soc/codecs')
-rw-r--r--sound/soc/codecs/wm8962.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c
index 6d0cae4681b..c850e3d84ed 100644
--- a/sound/soc/codecs/wm8962.c
+++ b/sound/soc/codecs/wm8962.c
@@ -2373,7 +2373,7 @@ static int out_pga_event(struct snd_soc_dapm_widget *w,
2373 } 2373 }
2374} 2374}
2375 2375
2376static const char *st_text[] = { "None", "Right", "Left" }; 2376static const char *st_text[] = { "None", "Left", "Right" };
2377 2377
2378static const struct soc_enum str_enum = 2378static const struct soc_enum str_enum =
2379 SOC_ENUM_SINGLE(WM8962_DAC_DSP_MIXING_1, 2, 3, st_text); 2379 SOC_ENUM_SINGLE(WM8962_DAC_DSP_MIXING_1, 2, 3, st_text);