]> git.itanic.dy.fi Git - linux-stable/commitdiff
ASoC: cs35l56: fix reversed if statement in cs35l56_dspwait_asp1tx_put()
authorDan Carpenter <dan.carpenter@linaro.org>
Mon, 5 Feb 2024 12:44:30 +0000 (15:44 +0300)
committerMark Brown <broonie@kernel.org>
Mon, 5 Feb 2024 14:31:35 +0000 (14:31 +0000)
It looks like the "!" character was added accidentally.  The
regmap_update_bits_check() function is normally going to succeed.  This
means the rest of the function is unreachable and we don't handle the
situation where "changed" is true correctly.

Fixes: 07f7d6e7a124 ("ASoC: cs35l56: Fix for initializing ASP1 mixer registers")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Reviewed-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://lore.kernel.org/r/0c254c07-d1c0-4a5c-a22b-7e135cab032c@moroto.mountain
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cs35l56.c

index c23e29da4cfb9f43fa52611fdeea96adad4a0b30..ebed5ab1245b45d918b3e26290be9e0bf1e62cc6 100644 (file)
@@ -115,7 +115,7 @@ static int cs35l56_dspwait_asp1tx_put(struct snd_kcontrol *kcontrol,
 
        ret = regmap_update_bits_check(cs35l56->base.regmap, addr,
                                       CS35L56_ASP_TXn_SRC_MASK, val, &changed);
-       if (!ret)
+       if (ret)
                return ret;
 
        if (changed)