summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>2025-10-25 13:27:16 +0200
committerLee Jones <lee@kernel.org>2025-11-06 14:05:02 +0000
commit049929c5a159c8671b9b0c12a7da963fef535b00 (patch)
tree81c7e7942395a3916c2afe07ddec1226fdea3b63
parent2bac49bad1f3553cc3b3bfb22cc194e9bd9e8427 (diff)
mfd: da9055: Simplify the error handling path in da9055_device_init()
If mfd_add_devices() fails, there is no need to call mfd_remove_devices(). The needed clean-up is already done in the error handling path of mfd_add_devices(). So, remove the unneeded (and harmless) call. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Link: https://patch.msgid.link/871f52e7ab5d12853bc39f36ac78b5a8e484d863.1761391599.git.christophe.jaillet@wanadoo.fr Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r--drivers/mfd/da9055-core.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mfd/da9055-core.c b/drivers/mfd/da9055-core.c
index 8c989b74f924..158590ad37d4 100644
--- a/drivers/mfd/da9055-core.c
+++ b/drivers/mfd/da9055-core.c
@@ -387,7 +387,6 @@ int da9055_device_init(struct da9055 *da9055)
return 0;
err:
- mfd_remove_devices(da9055->dev);
regmap_del_irq_chip(da9055->chip_irq, da9055->irq_data);
return ret;
}