]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ASoC: cs4271: Disable regulators in component_probe() error path
authorHerve Codina <herve.codina@bootlin.com>
Wed, 29 Oct 2025 09:39:18 +0000 (10:39 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 29 Oct 2025 20:13:24 +0000 (20:13 +0000)
commit1e5351ba60f5355809f30c61bbd27e97611d2be9
tree9757f43eaf256c2158af6c53349f0bfcb2cc13ce
parente2ff7154813a3834692703852604b2099ecf043a
ASoC: cs4271: Disable regulators in component_probe() error path

The commit 9a397f473657 ("ASoC: cs4271: add regulator consumer support")
has introduced regulators in the driver.

Regulators are enabled at the beginning of component_probe() but they
are not disabled on errors. This can lead to unbalanced enable/disable.

Fix the error path to disable regulators on errors.

Fixes: 9a397f473657 ("ASoC: cs4271: add regulator consumer support")
Cc: stable@vger.kernel.org
Signed-off-by: Herve Codina <herve.codina@bootlin.com>
Reviewed-by: Alexander Sverdlin <alexander.sverdlin@gmail.com>
Link: https://patch.msgid.link/20251029093921.624088-3-herve.codina@bootlin.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/cs4271.c