[alsa-devel] [PATCH 0/1] ASoC: fix the dapm_mux_update_power function for value_mux
Hello,
To be honest I don't know how I have missed this from the previous series with the cleanup for the value_mux type.
the dapm_mux_update_power function needs to check for both snd_soc_dapm_mux and snd_soc_dapm_value_mux.
--- Peter Ujfalusi (1): ASoC: Fix the power update function for snd_soc_dapm_value_mux
sound/soc/soc-dapm.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
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 peter.ujfalusi@nokia.com --- sound/soc/soc-dapm.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
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))
") Fcc: +sent-mail
On Thu, Jan 15, 2009 at 02:40:47PM +0200, Peter Ujfalusi wrote:
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 peter.ujfalusi@nokia.com
Acked-by: Mark Brown broonie@opensource.wolfsonmicro.com
This should go to 2.6.29, I'll send to Takashi later.
participants (2)
-
Mark Brown
-
Peter Ujfalusi