Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d297bb0 authored by Laxman Dewangan's avatar Laxman Dewangan
Browse files

gpio: spear-spics: Use devm_gpiochip_add_data() for gpio registration



Use devm_gpiochip_add_data() for GPIO registration.

Signed-off-by: default avatarLaxman Dewangan <ldewangan@nvidia.com>
parent c1411464
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -165,7 +165,7 @@ static int spics_gpio_probe(struct platform_device *pdev)
	spics->chip.owner = THIS_MODULE;
	spics->chip.owner = THIS_MODULE;
	spics->last_off = -1;
	spics->last_off = -1;


	ret = gpiochip_add_data(&spics->chip, spics);
	ret = devm_gpiochip_add_data(&pdev->dev, &spics->chip, spics);
	if (ret) {
	if (ret) {
		dev_err(&pdev->dev, "unable to add gpio chip\n");
		dev_err(&pdev->dev, "unable to add gpio chip\n");
		return ret;
		return ret;