All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] iio: magnetometer: ak8974: Fix the error handling of ak8974_probe()
@ 2022-04-09  3:48 Zheyu Ma
  2022-04-09  3:48 ` [PATCH] iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() Zheyu Ma
  2022-04-10 15:54 ` [PATCH] iio: magnetometer: ak8974: Fix the error handling of ak8974_probe() Jonathan Cameron
  0 siblings, 2 replies; 7+ messages in thread
From: Zheyu Ma @ 2022-04-09  3:48 UTC (permalink / raw)
  To: jic23, lars; +Cc: linux-iio, linux-kernel, Zheyu Ma

When the driver fail at devm_regmap_init_i2c(), we will get the
following splat:

[  106.797388] WARNING: CPU: 4 PID: 413 at drivers/regulator/core.c:2257 _regulator_put+0x3ec/0x4e0
[  106.802183] RIP: 0010:_regulator_put+0x3ec/0x4e0
[  106.811237] Call Trace:
[  106.811515]  <TASK>
[  106.811695]  regulator_bulk_free+0x82/0xe0
[  106.812032]  devres_release_group+0x319/0x3d0
[  106.812425]  i2c_device_probe+0x766/0x940

Fix this by disabling the regulators at the error path.

Signed-off-by: Zheyu Ma <zheyuma97@gmail.com>
---
 drivers/iio/magnetometer/ak8974.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/iio/magnetometer/ak8974.c b/drivers/iio/magnetometer/ak8974.c
index e54feacfb980..84bbf7ccc887 100644
--- a/drivers/iio/magnetometer/ak8974.c
+++ b/drivers/iio/magnetometer/ak8974.c
@@ -862,6 +862,7 @@ static int ak8974_probe(struct i2c_client *i2c,
 		dev_err(&i2c->dev, "failed to allocate register map\n");
 		pm_runtime_put_noidle(&i2c->dev);
 		pm_runtime_disable(&i2c->dev);
+		regulator_bulk_disable(ARRAY_SIZE(ak8974->regs), ak8974->regs);
 		return PTR_ERR(ak8974->map);
 	}
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2022-04-21 14:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-09  3:48 [PATCH] iio: magnetometer: ak8974: Fix the error handling of ak8974_probe() Zheyu Ma
2022-04-09  3:48 ` [PATCH] iio: magnetometer: ak8975: Fix the error handling in ak8975_power_on() Zheyu Ma
2022-04-10 16:01   ` Jonathan Cameron
2022-04-11  5:57     ` Zheyu Ma
2022-04-10 15:54 ` [PATCH] iio: magnetometer: ak8974: Fix the error handling of ak8974_probe() Jonathan Cameron
2022-04-20 23:14   ` Linus Walleij
2022-04-21 14:07     ` Ulf Hansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.