locking/rwsem: Fix down_write_killable()
[deliverable/linux.git] / drivers / gpio / gpio-janz-ttl.c
index 482aa0353868e3d1e1e395917e42cc7a4b077a6f..a8d0a6b8025a60f820a62674e6780b6b92bb0334 100644 (file)
@@ -182,7 +182,7 @@ static int ttl_probe(struct platform_device *pdev)
        gpio->base = -1;
        gpio->ngpio = 20;
 
-       ret = gpiochip_add_data(gpio, NULL);
+       ret = devm_gpiochip_add_data(dev, gpio, NULL);
        if (ret) {
                dev_err(dev, "unable to add GPIO chip\n");
                return ret;
@@ -191,21 +191,11 @@ static int ttl_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int ttl_remove(struct platform_device *pdev)
-{
-       struct ttl_module *mod = platform_get_drvdata(pdev);
-
-       gpiochip_remove(&mod->gpio);
-
-       return 0;
-}
-
 static struct platform_driver ttl_driver = {
        .driver         = {
                .name   = DRV_NAME,
        },
        .probe          = ttl_probe,
-       .remove         = ttl_remove,
 };
 
 module_platform_driver(ttl_driver);
This page took 0.02426 seconds and 5 git commands to generate.