diff options
author | Richard Fitzgerald <rf@opensource.cirrus.com> | 2023-10-06 19:44:05 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-10-09 15:13:49 +0300 |
commit | af5fd122d7bd739a2b66405f6e8ab92557279325 (patch) | |
tree | 75a013c6e1b08368a2cea543618d498e0aeffc39 | |
parent | 1426b9ba7c453755d182ebf7e7f2367ba249dcf4 (diff) | |
download | linux-af5fd122d7bd739a2b66405f6e8ab92557279325.tar.xz |
ASoC: cs35l56: Fix illegal use of init_completion()
Fix cs35l56_patch() to call reinit_completion() to reinitialize
the completion object.
It was incorrectly using init_completion().
Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Fixes: e49611252900 ("ASoC: cs35l56: Add driver for Cirrus Logic CS35L56")
Link: https://lore.kernel.org/r/20231006164405.253796-1-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/cs35l56.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs35l56.c b/sound/soc/codecs/cs35l56.c index f2e7c6d0be46..9c2d9cbc63d3 100644 --- a/sound/soc/codecs/cs35l56.c +++ b/sound/soc/codecs/cs35l56.c @@ -706,7 +706,7 @@ static void cs35l56_patch(struct cs35l56_private *cs35l56) mutex_lock(&cs35l56->base.irq_lock); - init_completion(&cs35l56->init_completion); + reinit_completion(&cs35l56->init_completion); cs35l56->soft_resetting = true; cs35l56_system_reset(&cs35l56->base, !!cs35l56->sdw_peripheral); |