pinctrl: lpc18xx: Use devm_pinctrl_register() for pinctrl registration
authorLaxman Dewangan <ldewangan@nvidia.com>
Wed, 24 Feb 2016 09:14:07 +0000 (14:44 +0530)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 21 Apr 2016 07:23:23 +0000 (09:23 +0200)
Use devm_pinctrl_register() for pin control registration.

Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Cc: Joachim Eastwood <manabian@gmail.com>
Acked-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-lpc18xx.c

index e897b63..8a931c7 100644 (file)
@@ -1355,7 +1355,7 @@ static int lpc18xx_scu_probe(struct platform_device *pdev)
 
        platform_set_drvdata(pdev, scu);
 
-       scu->pctl = pinctrl_register(&lpc18xx_scu_desc, &pdev->dev, scu);
+       scu->pctl = devm_pinctrl_register(&pdev->dev, &lpc18xx_scu_desc, scu);
        if (IS_ERR(scu->pctl)) {
                dev_err(&pdev->dev, "Could not register pinctrl driver\n");
                clk_disable_unprepare(scu->clk);
@@ -1369,7 +1369,6 @@ static int lpc18xx_scu_remove(struct platform_device *pdev)
 {
        struct lpc18xx_scu_data *scu = platform_get_drvdata(pdev);
 
-       pinctrl_unregister(scu->pctl);
        clk_disable_unprepare(scu->clk);
 
        return 0;