Use devm_clk_register() to simplify the code by removing twl6040_clk_remove().

Signed-off-by: Axel Lin <[email protected]>
---
 drivers/clk/clk-twl6040.c | 12 +-----------
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/drivers/clk/clk-twl6040.c b/drivers/clk/clk-twl6040.c
index 1ada79a..9e996b4 100644
--- a/drivers/clk/clk-twl6040.c
+++ b/drivers/clk/clk-twl6040.c
@@ -91,7 +91,7 @@ static int twl6040_clk_probe(struct platform_device *pdev)
        clkdata->twl6040 = twl6040;
 
        clkdata->mcpdm_fclk.init = &wm831x_clkout_init;
-       clkdata->clk = clk_register(&pdev->dev, &clkdata->mcpdm_fclk);
+       clkdata->clk = devm_clk_register(&pdev->dev, &clkdata->mcpdm_fclk);
        if (IS_ERR(clkdata->clk))
                return PTR_ERR(clkdata->clk);
 
@@ -100,22 +100,12 @@ static int twl6040_clk_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int twl6040_clk_remove(struct platform_device *pdev)
-{
-       struct twl6040_clk *clkdata = platform_get_drvdata(pdev);
-
-       clk_unregister(clkdata->clk);
-
-       return 0;
-}
-
 static struct platform_driver twl6040_clk_driver = {
        .driver = {
                .name = "twl6040-clk",
                .owner = THIS_MODULE,
        },
        .probe = twl6040_clk_probe,
-       .remove = twl6040_clk_remove,
 };
 
 module_platform_driver(twl6040_clk_driver);
-- 
1.8.3.2



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to