Skip to content

Commit ec0d23b

Browse files
Enric Balletbo i Serrabroonie
authored andcommitted
ASoC: rockchip-max98090: Fix the Headset Mic route.
The path Headset Mic --> MICBIAS is wrong because connects a non-supply widget as a source with a supply widget as a sink. It's the other way around: MICBIAS (source) --> Headset Mic (sink). This patch also shut up the following error message: rockchip-snd-max98090 sound: Connecting non-supply widget to supply widget is not supported (Headset Mic -> MICBIAS) rockchip-snd-max98090 sound: ASoC: no dapm match for Headset Mic --> (null) --> MICBIAS rockchip-snd-max98090 sound: ASoC: Failed to add route Headset Mic -> direct -> MICBIAS Signed-off-by: Enric Balletbo i Serra <[email protected]> Signed-off-by: Mark Brown <[email protected]>
1 parent 5f22449 commit ec0d23b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sound/soc/rockchip/rockchip_max98090.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ static const struct snd_soc_dapm_widget rk_dapm_widgets[] = {
5353
static const struct snd_soc_dapm_route rk_audio_map[] = {
5454
{"IN34", NULL, "Headset Mic"},
5555
{"IN34", NULL, "MICBIAS"},
56-
{"MICBIAS", NULL, "Headset Mic"},
56+
{"Headset Mic", NULL, "MICBIAS"},
5757
{"DMICL", NULL, "Int Mic"},
5858
{"Headphone", NULL, "HPL"},
5959
{"Headphone", NULL, "HPR"},

0 commit comments

Comments
 (0)