Commit 26175955 authored by Jean-Baptiste Maneyrol's avatar Jean-Baptiste Maneyrol Committed by Jonathan Cameron
Browse files

iio: imu: inv_icm45600: fix regulator put warning when probe fails



When the driver probe fails we encounter a regulator put warning
because vddio regulator is not stopped before release. The issue
comes from pm_runtime not already setup when core probe fails and
the vddio regulator disable callback is called.

Fix the issue by setting pm_runtime active early before vddio
regulator resource cleanup. This requires to cut pm_runtime
set_active and enable in 2 function calls.

Fixes: 7ff021a3 ("iio: imu: inv_icm45600: add new inv_icm45600 driver")
Signed-off-by: default avatarJean-Baptiste Maneyrol <jean-baptiste.maneyrol@tdk.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 06423404
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -744,6 +744,11 @@ int inv_icm45600_core_probe(struct regmap *regmap, const struct inv_icm45600_chi
	 */
	fsleep(5 * USEC_PER_MSEC);

	/* set pm_runtime active early for disable vddio resource cleanup */
	ret = pm_runtime_set_active(dev);
	if (ret)
		return ret;

	ret = inv_icm45600_enable_regulator_vddio(st);
	if (ret)
		return ret;
@@ -776,7 +781,7 @@ int inv_icm45600_core_probe(struct regmap *regmap, const struct inv_icm45600_chi
	if (ret)
		return ret;

	ret = devm_pm_runtime_set_active_enabled(dev);
	ret = devm_pm_runtime_enable(dev);
	if (ret)
		return ret;