diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2015-01-09 22:03:31 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-01-09 22:05:55 +0100 |
commit | b68ef0e0368cda4e17541ae87bbb5b40dc15cbc1 (patch) | |
tree | cf466027af1c7271dc36065afb29ad6b1db1a736 /sound/soc/pxa/palm27x.c | |
parent | ASoC: magician: Automatically disconnect non-connected pins (diff) | |
download | linux-b68ef0e0368cda4e17541ae87bbb5b40dc15cbc1.tar.xz linux-b68ef0e0368cda4e17541ae87bbb5b40dc15cbc1.zip |
ASoC: palm27x: Fix microphone route
The microphone route has sink and source swapped.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/pxa/palm27x.c')
-rw-r--r-- | sound/soc/pxa/palm27x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/pxa/palm27x.c b/sound/soc/pxa/palm27x.c index 1eebca2f0a97..5a0b82f93b15 100644 --- a/sound/soc/pxa/palm27x.c +++ b/sound/soc/pxa/palm27x.c @@ -68,7 +68,7 @@ static const struct snd_soc_dapm_route audio_map[] = { {"Ext. Speaker", NULL, "ROUT2"}, /* mic connected to MIC1 */ - {"Ext. Microphone", NULL, "MIC1"}, + {"MIC1", NULL, "Ext. Microphone"}, }; static struct snd_soc_card palm27x_asoc; |