From: Steve Rae Date: Tue, 21 Jun 2016 23:43:07 +0000 (-0700) Subject: arm: bcm235xx: update clock framework X-Git-Tag: v2016.07-rc3~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ada4e0ee652d2108c640a4daaf63865ad8dedb1;hp=77a1a677a6db02377921cda1a146d18efb1f31ec;p=platform%2Fkernel%2Fu-boot.git arm: bcm235xx: update clock framework The handling of the "usage counter" is incorrect, and the clock should only be disabled when transitioning from 1 to 0. Reported-by: Chris Brand Signed-off-by: Steve Rae --- diff --git a/arch/arm/cpu/armv7/bcm235xx/clk-core.c b/arch/arm/cpu/armv7/bcm235xx/clk-core.c index 2b5da6b..a326dfe 100644 --- a/arch/arm/cpu/armv7/bcm235xx/clk-core.c +++ b/arch/arm/cpu/armv7/bcm235xx/clk-core.c @@ -449,10 +449,9 @@ int clk_enable(struct clk *c) if (ret) return ret; - if (!c->use_cnt) { - c->use_cnt++; + if (!c->use_cnt) ret = c->ops->enable(c, 1); - } + c->use_cnt++; return ret; } @@ -464,9 +463,10 @@ void clk_disable(struct clk *c) if (!c->ops || !c->ops->enable) return; - if (c->use_cnt) { + if (c->use_cnt > 0) { c->use_cnt--; - c->ops->enable(c, 0); + if (c->use_cnt == 0) + c->ops->enable(c, 0); } /* disable parent */