From: Peter Ujfalusi Date: Thu, 15 Jan 2009 12:40:47 +0000 (+0200) Subject: ASoC: Fix the power update function for snd_soc_dapm_value_mux X-Git-Tag: 2.1b_release~14347^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eff317d0834ad1ff03f747f6bc2d76b9a9c95160;p=platform%2Fkernel%2Fkernel-mfld-blackbay.git ASoC: Fix the power update function for snd_soc_dapm_value_mux Modify the check for the mux type to also handle the snd_soc_dapm_value_mux type in a same way as the snd_soc_dapm_mux. Signed-off-by: Peter Ujfalusi Signed-off-by: Takashi Iwai --- diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 493a4e8..a2f1da8 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -720,7 +720,8 @@ static int dapm_mux_update_power(struct snd_soc_dapm_widget *widget, struct snd_soc_dapm_path *path; int found = 0; - if (widget->id != snd_soc_dapm_mux) + if (widget->id != snd_soc_dapm_mux && + widget->id != snd_soc_dapm_value_mux) return -ENODEV; if (!snd_soc_test_bits(widget->codec, e->reg, mask, val))