From: Mark Brown Date: Tue, 14 Feb 2012 06:00:47 +0000 (-0800) Subject: ASoC: wm8962: Fix sidetone enumeration texts X-Git-Tag: firefly_0821_release~7541^2~1739 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=62797c459126d343df0e9095fe1aa9ae3ebb3f89;p=firefly-linux-kernel-4.4.55.git ASoC: wm8962: Fix sidetone enumeration texts commit 31794bc37bf2db84f085da52b72bfba65739b2d2 upstream. The sidetone enumeration texts have left and right swapped. Signed-off-by: Mark Brown Signed-off-by: Greg Kroah-Hartman --- diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c index 6d0cae4681bd..c850e3d84ed0 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, } } -static const char *st_text[] = { "None", "Right", "Left" }; +static const char *st_text[] = { "None", "Left", "Right" }; static const struct soc_enum str_enum = SOC_ENUM_SINGLE(WM8962_DAC_DSP_MIXING_1, 2, 3, st_text);