mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 22:51:35 +00:00
gpio: sta2x11: 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
3d297bb030
commit
5fa734ccf0
@ -409,7 +409,7 @@ static int gsta_probe(struct platform_device *dev)
|
||||
goto err_free_descs;
|
||||
}
|
||||
|
||||
err = gpiochip_add_data(&chip->gpio, chip);
|
||||
err = devm_gpiochip_add_data(&dev->dev, &chip->gpio, chip);
|
||||
if (err < 0) {
|
||||
dev_err(&dev->dev, "sta2x11 gpio: Can't register (%i)\n",
|
||||
-err);
|
||||
|
Loading…
Reference in New Issue
Block a user