Skip to content

Commit

Permalink
ASoC: wm8962: Fix sidetone enumeration texts
Browse files Browse the repository at this point in the history
The sidetone enumeration texts have left and right swapped.

Signed-off-by: Mark Brown <[email protected]>
Cc: [email protected]
  • Loading branch information
broonie committed Feb 14, 2012
1 parent 1987877 commit 31794bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/wm8962.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 31794bc

Please sign in to comment.