diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2010-06-25 03:20:29 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-07-02 05:04:27 -0400 |
commit | c45f6f10263ab53574f54de0caf0299b7d7c06a8 (patch) | |
tree | 2bba9e54405987eb58f9484eed8daa8d54717702 /drivers/sh | |
parent | 358aa7031d90fc3c7c1dbf1fd248a7e3af3c4b11 (diff) |
sh: move a debug printk() to a more meaningful location in the clock driver
To actually output the _new_ clock rate it first has to be set.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/sh')
-rw-r--r-- | drivers/sh/clk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/sh/clk.c b/drivers/sh/clk.c index 5d84adac9ec4..936c93aaef11 100644 --- a/drivers/sh/clk.c +++ b/drivers/sh/clk.c | |||
@@ -354,10 +354,10 @@ int clk_set_parent(struct clk *clk, struct clk *parent) | |||
354 | ret = clk_reparent(clk, parent); | 354 | ret = clk_reparent(clk, parent); |
355 | 355 | ||
356 | if (ret == 0) { | 356 | if (ret == 0) { |
357 | pr_debug("clock: set parent of %s to %s (new rate %ld)\n", | ||
358 | clk->name, clk->parent->name, clk->rate); | ||
359 | if (clk->ops->recalc) | 357 | if (clk->ops->recalc) |
360 | clk->rate = clk->ops->recalc(clk); | 358 | clk->rate = clk->ops->recalc(clk); |
359 | pr_debug("clock: set parent of %s to %s (new rate %ld)\n", | ||
360 | clk->name, clk->parent->name, clk->rate); | ||
361 | propagate_rate(clk); | 361 | propagate_rate(clk); |
362 | } | 362 | } |
363 | } else | 363 | } else |