aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/tlv320aic3x.c
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-10-08 08:36:03 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-10-10 05:28:26 -0400
commit25c77c5fae5e0ef43ab6381f89fc41e26d2ca0f4 (patch)
tree2ade2999a71f1c48b3ea389c0c4bf4e29388d5ee /sound/soc/codecs/tlv320aic3x.c
parent3ebb5c9b1056b7eaae3e5dd11b97e2830797e51c (diff)
ASoC: Fix DAPM sync for TLV320AIC3x custom DAPM widget
We really should be doing this in the core, not in a driver... Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Tested-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
Diffstat (limited to 'sound/soc/codecs/tlv320aic3x.c')
-rw-r--r--sound/soc/codecs/tlv320aic3x.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/soc/codecs/tlv320aic3x.c b/sound/soc/codecs/tlv320aic3x.c
index d877b39b5000..be55b7f36282 100644
--- a/sound/soc/codecs/tlv320aic3x.c
+++ b/sound/soc/codecs/tlv320aic3x.c
@@ -197,6 +197,10 @@ static int snd_soc_dapm_put_volsw_aic3x(struct snd_kcontrol *kcontrol,
197 else 197 else
198 /* old connection must be powered down */ 198 /* old connection must be powered down */
199 path->connect = invert ? 1 : 0; 199 path->connect = invert ? 1 : 0;
200
201 dapm_mark_dirty(path->source, "tlv320aic3x source");
202 dapm_mark_dirty(path->sink, "tlv320aic3x sink");
203
200 break; 204 break;
201 } 205 }
202 206