Clean up omap2_clk_enable() by moving most of the function body out of
the usecount check.  Should result in no functional change.

Signed-off-by: Paul Walmsley <[email protected]>
---
 arch/arm/mach-omap2/clock.c |   31 ++++++++++++++++---------------
 1 files changed, 16 insertions(+), 15 deletions(-)

diff --git a/arch/arm/mach-omap2/clock.c b/arch/arm/mach-omap2/clock.c
index 1979d5f..3f8354d 100644
--- a/arch/arm/mach-omap2/clock.c
+++ b/arch/arm/mach-omap2/clock.c
@@ -485,26 +485,27 @@ int omap2_clk_enable(struct clk *clk)
 {
        int ret = 0;
 
-       if (clk->usecount++ == 0) {
-               if (clk->parent)
-                       ret = omap2_clk_enable(clk->parent);
+       if (++clk->usecount > 1)
+               return 0;
 
-               if (ret != 0) {
-                       clk->usecount--;
-                       return ret;
-               }
+       if (clk->parent)
+               ret = omap2_clk_enable(clk->parent);
+
+       if (ret != 0) {
+               clk->usecount--;
+               return ret;
+       }
 
-               omap2_clkdm_clk_enable(clk->clkdm.ptr, clk);
+       omap2_clkdm_clk_enable(clk->clkdm.ptr, clk);
 
-               ret = _omap2_clk_enable(clk);
+       ret = _omap2_clk_enable(clk);
 
-               if (ret != 0) {
-                       omap2_clkdm_clk_disable(clk->clkdm.ptr, clk);
+       if (ret != 0) {
+               omap2_clkdm_clk_disable(clk->clkdm.ptr, clk);
 
-                       if (clk->parent) {
-                               omap2_clk_disable(clk->parent);
-                               clk->usecount--;
-                       }
+               if (clk->parent) {
+                       omap2_clk_disable(clk->parent);
+                       clk->usecount--;
                }
        }
 


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

Reply via email to