Commit 7b697b3a authored by Laxman Dewangan's avatar Laxman Dewangan

gpio: kempld: Use devm_gpiochip_add_data() for gpio registration

Use devm_gpiochip_add_data() for GPIO registration and remove the
need of driver callback .remove.
Signed-off-by: default avatarLaxman Dewangan <ldewangan@nvidia.com>
parent abeb3f40
...@@ -178,7 +178,7 @@ static int kempld_gpio_probe(struct platform_device *pdev) ...@@ -178,7 +178,7 @@ static int kempld_gpio_probe(struct platform_device *pdev)
return -ENODEV; return -ENODEV;
} }
ret = gpiochip_add_data(chip, gpio); ret = devm_gpiochip_add_data(dev, chip, gpio);
if (ret) { if (ret) {
dev_err(dev, "Could not register GPIO chip\n"); dev_err(dev, "Could not register GPIO chip\n");
return ret; return ret;
...@@ -190,20 +190,11 @@ static int kempld_gpio_probe(struct platform_device *pdev) ...@@ -190,20 +190,11 @@ static int kempld_gpio_probe(struct platform_device *pdev)
return 0; return 0;
} }
static int kempld_gpio_remove(struct platform_device *pdev)
{
struct kempld_gpio_data *gpio = platform_get_drvdata(pdev);
gpiochip_remove(&gpio->chip);
return 0;
}
static struct platform_driver kempld_gpio_driver = { static struct platform_driver kempld_gpio_driver = {
.driver = { .driver = {
.name = "kempld-gpio", .name = "kempld-gpio",
}, },
.probe = kempld_gpio_probe, .probe = kempld_gpio_probe,
.remove = kempld_gpio_remove,
}; };
module_platform_driver(kempld_gpio_driver); module_platform_driver(kempld_gpio_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment