From: Mark Brown Date: Tue, 14 Feb 2012 06:00:47 +0000 (-0800) Subject: ASoC: wm8962: Fix sidetone enumeration texts X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=31794bc37bf2db84f085da52b72bfba65739b2d2;p=~shefty%2Frdma-dev.git ASoC: wm8962: Fix sidetone enumeration texts The sidetone enumeration texts have left and right swapped. Signed-off-by: Mark Brown Cc: stable@vger.kernel.org --- diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c index 29c4b02c479..0ac228b7dc0 100644 --- a/sound/soc/codecs/wm8962.c +++ b/sound/soc/codecs/wm8962.c @@ -2564,7 +2564,7 @@ static int dsp2_event(struct snd_soc_dapm_widget *w, return 0; } -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);