ASoC: rx51: Correct DAPM route for capture
authorPeter Ujfalusi <peter.ujfalusi@ti.com>
Fri, 30 Jan 2015 07:32:43 +0000 (09:32 +0200)
committerMark Brown <broonie@kernel.org>
Fri, 30 Jan 2015 12:50:31 +0000 (13:50 +0100)
"Mic Bias" is DAPM_SUPPLY so it has to be connected in the route
accordingly.
Fixes audio capture on the board.

Reported-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Tested-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/omap/rx51.c

index 04896d6..7f29935 100644 (file)
@@ -250,14 +250,14 @@ static const struct snd_soc_dapm_route audio_map[] = {
        {"FM Transmitter", NULL, "LLOUT"},
        {"FM Transmitter", NULL, "RLOUT"},
 
-       {"DMic Rate 64", NULL, "Mic Bias"},
-       {"Mic Bias", NULL, "DMic"},
+       {"DMic Rate 64", NULL, "DMic"},
+       {"DMic", NULL, "Mic Bias"},
 
        {"b LINE2R", NULL, "MONO_LOUT"},
        {"Earphone", NULL, "b HPLOUT"},
 
-       {"LINE1L", NULL, "b Mic Bias"},
-       {"b Mic Bias", NULL, "HS Mic"}
+       {"LINE1L", NULL, "HS Mic"},
+       {"HS Mic", NULL, "b Mic Bias"},
 };
 
 static const char * const spk_function[] = {"Off", "On"};