Skip to content

Commit

Permalink
ASoC: wm8904: fix typo in DAPM kcontrol name
Browse files Browse the repository at this point in the history
Trivial fix for typo in "Capture Inverting Mux"es' name.

Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/f95ae1085f9f3c137a122c4d95728711613c15f7.1566298834.git.mirq-linux@rere.qmqm.pl
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Michał Mirosław authored and Mark Brown committed Aug 20, 2019
1 parent 404be07 commit 22afe62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/soc/codecs/wm8904.c
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ static SOC_ENUM_SINGLE_DECL(lin_inv_enum, WM8904_ANALOGUE_LEFT_INPUT_1, 4,
lin_text);

static const struct snd_kcontrol_new lin_inv_mux =
SOC_DAPM_ENUM("Left Capture Inveting Mux", lin_inv_enum);
SOC_DAPM_ENUM("Left Capture Inverting Mux", lin_inv_enum);

static const char *rin_text[] = {
"IN1R", "IN2R", "IN3R"
Expand All @@ -882,7 +882,7 @@ static SOC_ENUM_SINGLE_DECL(rin_inv_enum, WM8904_ANALOGUE_RIGHT_INPUT_1, 4,
rin_text);

static const struct snd_kcontrol_new rin_inv_mux =
SOC_DAPM_ENUM("Right Capture Inveting Mux", rin_inv_enum);
SOC_DAPM_ENUM("Right Capture Inverting Mux", rin_inv_enum);

static const char *aif_text[] = {
"Left", "Right"
Expand Down

0 comments on commit 22afe62

Please sign in to comment.