summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2022-04-28 17:24:44 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2022-06-09 10:21:27 +0200
commit8f1bc0edf53c8a964a9b73019c4ba5f977956271 (patch)
tree5736e51a9916f39b2852ee50adfaf8d43d3acd14
parent769ec2a824deae2f1268dfda14999a4d14d0d0c5 (diff)
downloadlinux-8f1bc0edf53c8a964a9b73019c4ba5f977956271.tar.gz
linux-8f1bc0edf53c8a964a9b73019c4ba5f977956271.tar.bz2
linux-8f1bc0edf53c8a964a9b73019c4ba5f977956271.zip
ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control
commit 4213ff556740bb45e2d9ff0f50d056c4e7dd0921 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>
-rw-r--r--sound/soc/codecs/rt5514.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/rt5514.c b/sound/soc/codecs/rt5514.c
index 7081142a355e..c444a56df95b 100644
--- a/sound/soc/codecs/rt5514.c
+++ b/sound/soc/codecs/rt5514.c
@@ -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[] = {