diff options
author | Michał Mirosław <mirq-linux@rere.qmqm.pl> | 2019-08-20 07:02:35 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-08-20 13:02:44 -0400 |
commit | 22afe6242387eca1ac3905fbde7bef38deb0357d (patch) | |
tree | 422d02b988cb6cf3aff1b2a8740a72f10c60fea2 | |
parent | 404be07f4ed27697f5fa69162f67a94555738595 (diff) |
ASoC: wm8904: fix typo in DAPM kcontrol name
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>
-rw-r--r-- | sound/soc/codecs/wm8904.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/wm8904.c b/sound/soc/codecs/wm8904.c index 5ebdd1d9afde..525e4ef654a1 100644 --- a/sound/soc/codecs/wm8904.c +++ b/sound/soc/codecs/wm8904.c | |||
@@ -866,7 +866,7 @@ static SOC_ENUM_SINGLE_DECL(lin_inv_enum, WM8904_ANALOGUE_LEFT_INPUT_1, 4, | |||
866 | lin_text); | 866 | lin_text); |
867 | 867 | ||
868 | static const struct snd_kcontrol_new lin_inv_mux = | 868 | static const struct snd_kcontrol_new lin_inv_mux = |
869 | SOC_DAPM_ENUM("Left Capture Inveting Mux", lin_inv_enum); | 869 | SOC_DAPM_ENUM("Left Capture Inverting Mux", lin_inv_enum); |
870 | 870 | ||
871 | static const char *rin_text[] = { | 871 | static const char *rin_text[] = { |
872 | "IN1R", "IN2R", "IN3R" | 872 | "IN1R", "IN2R", "IN3R" |
@@ -882,7 +882,7 @@ static SOC_ENUM_SINGLE_DECL(rin_inv_enum, WM8904_ANALOGUE_RIGHT_INPUT_1, 4, | |||
882 | rin_text); | 882 | rin_text); |
883 | 883 | ||
884 | static const struct snd_kcontrol_new rin_inv_mux = | 884 | static const struct snd_kcontrol_new rin_inv_mux = |
885 | SOC_DAPM_ENUM("Right Capture Inveting Mux", rin_inv_enum); | 885 | SOC_DAPM_ENUM("Right Capture Inverting Mux", rin_inv_enum); |
886 | 886 | ||
887 | static const char *aif_text[] = { | 887 | static const char *aif_text[] = { |
888 | "Left", "Right" | 888 | "Left", "Right" |