diff options
author | Adrian Alonso <aalonso@freescale.com> | 2012-04-10 11:04:10 -0500 |
---|---|---|
committer | Frank Li <Frank.Li@freescale.com> | 2012-04-12 12:13:08 +0800 |
commit | 3a9d24082fa8c6fd66582bd5bca43217d70140aa (patch) | |
tree | 79d3eaab0d98f59bd53d5eee5cbbf97300129323 | |
parent | d99e05fd9ae1ac0098f1e6433e74fc916e9c38ee (diff) |
ENGR00179367: cs42888 record fix damp routing settings
* Fix cs42888 record DAMP routing settings for ADCx
Signed-off-by: Adrian Alonso <aalonso@freescale.com>
-rw-r--r-- | sound/soc/codecs/cs42888.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/sound/soc/codecs/cs42888.c b/sound/soc/codecs/cs42888.c index 86feec2676df..63d244a8d00a 100644 --- a/sound/soc/codecs/cs42888.c +++ b/sound/soc/codecs/cs42888.c @@ -478,11 +478,17 @@ static const struct snd_soc_dapm_route audio_map[] = { { "AOUT4R", NULL, "PWR" }, /* Capture */ - { "ADC1", NULL, "AIN1L" }, - { "ADC1", NULL, "AIN1R" }, + { "PWR", NULL, "AIN1L" }, + { "PWR", NULL, "AIN1R" }, - { "ADC2", NULL, "AIN2L" }, - { "ADC2", NULL, "AIN2R" }, + { "PWR", NULL, "AIN2L" }, + { "PWR", NULL, "AIN2R" }, + + { "ADC1", NULL, "PWR" }, + { "ADC1", NULL, "PWR" }, + + { "ADC2", NULL, "PWR" }, + { "ADC2", NULL, "PWR" }, }; |