diff options
author | Peter Ujfalusi <peter.ujfalusi@Nokia.com> | 2010-07-26 09:59:15 +0300 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2010-07-27 11:43:40 +0100 |
commit | b93cc9f19bade9e9ddd41958352168dc0d266f48 (patch) | |
tree | aaf493f865159ea6013e243bca54473ac2bad8d2 /sound/soc | |
parent | a7e7cd5bd7d1e0134032b8db5e64ceb9dac8b3ca (diff) | |
download | kernel_samsung_smdk4412-b93cc9f19bade9e9ddd41958352168dc0d266f48.zip kernel_samsung_smdk4412-b93cc9f19bade9e9ddd41958352168dc0d266f48.tar.gz kernel_samsung_smdk4412-b93cc9f19bade9e9ddd41958352168dc0d266f48.tar.bz2 |
ASoC: TWL4030: Capture route DAPM event fix
There is no need to handle POST_PMU, POST_PMD event with
the Capture Route widget.
It is enough to handle POST_REG event, since that will come
when the user changes the routing, and we will switch the needed
bits in the registers.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'sound/soc')
-rw-r--r-- | sound/soc/codecs/twl4030.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/soc/codecs/twl4030.c b/sound/soc/codecs/twl4030.c index bd557c2..d401c59 100644 --- a/sound/soc/codecs/twl4030.c +++ b/sound/soc/codecs/twl4030.c @@ -1432,11 +1432,9 @@ static const struct snd_soc_dapm_widget twl4030_dapm_widgets[] = { TX2 Left/Right: either analog Left/Right or Digimic1 */ SND_SOC_DAPM_MUX_E("TX1 Capture Route", SND_SOC_NOPM, 0, 0, &twl4030_dapm_micpathtx1_control, micpath_event, - SND_SOC_DAPM_POST_PMU|SND_SOC_DAPM_POST_PMD| SND_SOC_DAPM_POST_REG), SND_SOC_DAPM_MUX_E("TX2 Capture Route", SND_SOC_NOPM, 0, 0, &twl4030_dapm_micpathtx2_control, micpath_event, - SND_SOC_DAPM_POST_PMU|SND_SOC_DAPM_POST_PMD| SND_SOC_DAPM_POST_REG), /* Analog input mixers for the capture amplifiers */ |