gpio: ucb1400: Use devm_gpiochip_add_data() for gpio registration
Use devm_gpiochip_add_data() for GPIO registration. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
This commit is contained in:
parent
fc0292a238
commit
5d61a9e0ac
1 changed files with 1 additions and 2 deletions
|
@ -67,7 +67,7 @@ static int ucb1400_gpio_probe(struct platform_device *dev)
|
||||||
ucb->gc.set = ucb1400_gpio_set;
|
ucb->gc.set = ucb1400_gpio_set;
|
||||||
ucb->gc.can_sleep = true;
|
ucb->gc.can_sleep = true;
|
||||||
|
|
||||||
err = gpiochip_add_data(&ucb->gc, ucb);
|
err = devm_gpiochip_add_data(&dev->dev, &ucb->gc, ucb);
|
||||||
if (err)
|
if (err)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
|
@ -90,7 +90,6 @@ static int ucb1400_gpio_remove(struct platform_device *dev)
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
gpiochip_remove(&ucb->gc);
|
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue