ASoC: tas6424: Return zero in remove callback
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 25 Apr 2022 19:32:06 +0000 (21:32 +0200)
committerMark Brown <broonie@kernel.org>
Tue, 26 Apr 2022 14:13:38 +0000 (15:13 +0100)
commit0e631e065bcb92cc97b38a82e41695952145751d
tree09982fce39e15ef0d2d63c5745658d31174cead5
parent83f48ad508b0539f4a1737a1a125d1b66191dbc3
ASoC: tas6424: Return zero in remove callback

The only effect of returning an error code in an i2c remove callback
(compared to returning zero) is that the i2c core emits a generic
warning. The device is still removed.

So even if disabling the regulators fails it's sensible to return zero
to suppress the additional generic and little helpful error message.

This patch is a preparation for making i2c remove callbacks return void.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20220425193206.61710-1-u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tas6424.c