]> Git Repo - linux.git/commitdiff
pwm: bcm2835: Simplify using devm functions
authorUwe Kleine-König <[email protected]>
Fri, 29 Sep 2023 16:19:09 +0000 (18:19 +0200)
committerThierry Reding <[email protected]>
Fri, 13 Oct 2023 08:07:18 +0000 (10:07 +0200)
With devm_clk_get_enabled() the call to clk_disable_unprepare() can be
dropped from the error path and the remove callback. With
devm_pwmchip_add() pwmchip_remove() can be dropped. Then the remove
callback is empty and can go away, too. With bcm2835_pwm_remove() the only
user of platform_get_drvdata() is gone and so platform_set_drvdata() can
be dropped from .probe(), too.

Also use dev_err_probe() for simplified (and improved) error reporting.

Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Uwe Kleine-König <[email protected]>
Signed-off-by: Thierry Reding <[email protected]>
drivers/pwm/pwm-bcm2835.c

index af318a35d510e1212bccb89e2ec797b6dfcce819..8c69ddfea2d0fb9b4756c8116e5cb2cd69249c47 100644 (file)
@@ -146,39 +146,21 @@ static int bcm2835_pwm_probe(struct platform_device *pdev)
        if (IS_ERR(pc->base))
                return PTR_ERR(pc->base);
 
-       pc->clk = devm_clk_get(&pdev->dev, NULL);
+       pc->clk = devm_clk_get_enabled(&pdev->dev, NULL);
        if (IS_ERR(pc->clk))
                return dev_err_probe(&pdev->dev, PTR_ERR(pc->clk),
                                     "clock not found\n");
 
-       ret = clk_prepare_enable(pc->clk);
-       if (ret)
-               return ret;
-
        pc->chip.dev = &pdev->dev;
        pc->chip.ops = &bcm2835_pwm_ops;
        pc->chip.npwm = 2;
 
-       platform_set_drvdata(pdev, pc);
-
-       ret = pwmchip_add(&pc->chip);
+       ret = devm_pwmchip_add(&pdev->dev, &pc->chip);
        if (ret < 0)
-               goto add_fail;
+               return dev_err_probe(&pdev->dev, ret,
+                                    "failed to add pwmchip\n");
 
        return 0;
-
-add_fail:
-       clk_disable_unprepare(pc->clk);
-       return ret;
-}
-
-static void bcm2835_pwm_remove(struct platform_device *pdev)
-{
-       struct bcm2835_pwm *pc = platform_get_drvdata(pdev);
-
-       pwmchip_remove(&pc->chip);
-
-       clk_disable_unprepare(pc->clk);
 }
 
 static const struct of_device_id bcm2835_pwm_of_match[] = {
@@ -193,7 +175,6 @@ static struct platform_driver bcm2835_pwm_driver = {
                .of_match_table = bcm2835_pwm_of_match,
        },
        .probe = bcm2835_pwm_probe,
-       .remove_new = bcm2835_pwm_remove,
 };
 module_platform_driver(bcm2835_pwm_driver);
 
This page took 0.056332 seconds and 4 git commands to generate.