Unverified Commit 2bb8ede0 authored by Linus Walleij's avatar Linus Walleij Committed by Mark Brown
Browse files

regulator: lp8788-ldo: Let core handle GPIO descriptor



Use the gpiod_get() rather than the devm_* version so that the
regulator core can handle the lifecycle of these descriptors.

Fixes: 2468f0d5 ("regulator: lp8788-ldo: Pass descriptor instead of GPIO number")
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Reviewed-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Reviewed-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent e8a33aa0
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -501,8 +501,12 @@ static int lp8788_config_ldo_enable_mode(struct platform_device *pdev,
		return 0;
	}

	/* FIXME: check default mode for GPIO here: high or low? */
	ldo->ena_gpiod = devm_gpiod_get_index_optional(&pdev->dev,
	/*
	 * Do not use devm* here: the regulator core takes over the
	 * lifecycle management of the GPIO descriptor.
	 * FIXME: check default mode for GPIO here: high or low?
	 */
	ldo->ena_gpiod = gpiod_get_index_optional(&pdev->dev,
					       "enable",
					       enable_id,
					       GPIOD_OUT_HIGH |