From: Julia Lawall <julia.law...@lip6.fr>

Clk_prepare_enable and clk_disable_unprepare combine clk_prepare and
clk_enable, and clk_disable and clk_unprepare.  They make the code more
concise, and ensure that clk_unprepare is called when clk_enable fails.

A simplified version of the semantic patch that introduces calls to these
functions is as follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
expression e;
@@

- clk_prepare(e);
- clk_enable(e);
+ clk_prepare_enable(e);

@@
expression e;
@@

- clk_disable(e);
- clk_unprepare(e);
+ clk_disable_unprepare(e);
// </smpl>

Signed-off-by: Julia Lawall <julia.law...@lip6.fr>

---
 drivers/i2c/busses/i2c-mv64xxx.c |   18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/drivers/i2c/busses/i2c-mv64xxx.c b/drivers/i2c/busses/i2c-mv64xxx.c
index 2e9d567..046c4b5 100644
--- a/drivers/i2c/busses/i2c-mv64xxx.c
+++ b/drivers/i2c/busses/i2c-mv64xxx.c
@@ -633,10 +633,8 @@ mv64xxx_i2c_probe(struct platform_device *pd)
 #if defined(CONFIG_HAVE_CLK)
        /* Not all platforms have a clk */
        drv_data->clk = clk_get(&pd->dev, NULL);
-       if (!IS_ERR(drv_data->clk)) {
-               clk_prepare(drv_data->clk);
-               clk_enable(drv_data->clk);
-       }
+       if (!IS_ERR(drv_data->clk))
+               clk_prepare_enable(drv_data->clk);
 #endif
        if (pdata) {
                drv_data->freq_m = pdata->freq_m;
@@ -686,10 +684,8 @@ mv64xxx_i2c_probe(struct platform_device *pd)
        exit_unmap_regs:
 #if defined(CONFIG_HAVE_CLK)
        /* Not all platforms have a clk */
-       if (!IS_ERR(drv_data->clk)) {
-               clk_disable(drv_data->clk);
-               clk_unprepare(drv_data->clk);
-       }
+       if (!IS_ERR(drv_data->clk))
+               clk_disable_unprepare(drv_data->clk);
 #endif
                mv64xxx_i2c_unmap_regs(drv_data);
        exit_kfree:
@@ -708,10 +704,8 @@ mv64xxx_i2c_remove(struct platform_device *dev)
        mv64xxx_i2c_unmap_regs(drv_data);
 #if defined(CONFIG_HAVE_CLK)
        /* Not all platforms have a clk */
-       if (!IS_ERR(drv_data->clk)) {
-               clk_disable(drv_data->clk);
-               clk_unprepare(drv_data->clk);
-       }
+       if (!IS_ERR(drv_data->clk))
+               clk_disable_unprepare(drv_data->clk);
 #endif
        kfree(drv_data);
 

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
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