diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2013-08-30 11:39:33 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-30 11:41:06 -0400 |
commit | 2daabd7848b89afddd93be616f1be5639ea78822 (patch) | |
tree | 18ccfe6e4d4d944740df0b0c69eba0aba9761852 /sound | |
parent | 34742cb02bd368c1af3349c041d3e4446f7ac6ef (diff) |
ASoC: dapm: Fix auto-disable for inverted controls
We need to make sure that the control's cached value is initialized to the same
value as the control's widget->on_val. Otherwise updates might be lost.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/soc-dapm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 7e9afbc49ef2..13fcb61a922f 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c | |||
@@ -229,6 +229,8 @@ static int dapm_kcontrol_data_alloc(struct snd_soc_dapm_widget *widget, | |||
229 | template.id = snd_soc_dapm_kcontrol; | 229 | template.id = snd_soc_dapm_kcontrol; |
230 | template.name = kcontrol->id.name; | 230 | template.name = kcontrol->id.name; |
231 | 231 | ||
232 | data->value = template.on_val; | ||
233 | |||
232 | data->widget = snd_soc_dapm_new_control(widget->dapm, | 234 | data->widget = snd_soc_dapm_new_control(widget->dapm, |
233 | &template); | 235 | &template); |
234 | if (!data->widget) { | 236 | if (!data->widget) { |