aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/sh
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/sh')
-rw-r--r--drivers/sh/clk.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/sh/clk.c b/drivers/sh/clk.c
index c90a3e1e1085..5d84adac9ec4 100644
--- a/drivers/sh/clk.c
+++ b/drivers/sh/clk.c
@@ -160,12 +160,9 @@ void propagate_rate(struct clk *tclk)
160 160
161static void __clk_disable(struct clk *clk) 161static void __clk_disable(struct clk *clk)
162{ 162{
163 if (clk->usecount == 0) { 163 if (WARN(!clk->usecount, "Trying to disable clock %s with 0 usecount\n",
164 printk(KERN_ERR "Trying disable clock %s with 0 usecount\n", 164 clk->name))
165 clk->name);
166 WARN_ON(1);
167 return; 165 return;
168 }
169 166
170 if (!(--clk->usecount)) { 167 if (!(--clk->usecount)) {
171 if (likely(clk->ops && clk->ops->disable)) 168 if (likely(clk->ops && clk->ops->disable))