Skip to content

Commit

Permalink
ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control
Browse files Browse the repository at this point in the history
commit 4213ff5 upstream.

The driver has a custom put function for "DSP Voice Wake Up" which does
not generate event notifications on change, instead returning 0. Since we
already exit early in the case that there is no change this can be fixed
by unconditionally returning 1 at the end of the function.

Signed-off-by: Mark Brown <broonie@kernel.org>
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20220428162444.3883147-1-broonie@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
broonie authored and gregkh committed Jun 9, 2022
1 parent 9ad1981 commit 5463ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/rt5514.c
Expand Up @@ -419,7 +419,7 @@ static int rt5514_dsp_voice_wake_up_put(struct snd_kcontrol *kcontrol,
}
}

return 0;
return 1;
}

static const struct snd_kcontrol_new rt5514_snd_controls[] = {
Expand Down

0 comments on commit 5463ba6

Please sign in to comment.