summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Stach <l.stach@pengutronix.de>2017-07-18 15:17:53 +0200
committerLucas Stach <l.stach@pengutronix.de>2017-07-20 15:26:33 +0200
commit881dda908336c0d277b0c8ed05426228ebad70e8 (patch)
tree5642f0feddf7f4fe1e7b9a32fb3b7f7d8b078d6f
parent77964ea67ebff9d14f31cf719b21dfaabb7a0f5b (diff)
downloadbarebox-881dda908336c0d277b0c8ed05426228ebad70e8.tar.gz
barebox-881dda908336c0d277b0c8ed05426228ebad70e8.tar.xz
clk: clk-fixed-factor: remove leftover debugging
Don't spam the output with rate propagation messages. It isn't done for any other clock. Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
-rw-r--r--drivers/clk/clk-fixed-factor.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/clk/clk-fixed-factor.c b/drivers/clk/clk-fixed-factor.c
index 0be48558e6..021c43339f 100644
--- a/drivers/clk/clk-fixed-factor.c
+++ b/drivers/clk/clk-fixed-factor.c
@@ -56,7 +56,6 @@ static int clk_factor_set_rate(struct clk *clk, unsigned long rate,
struct clk_fixed_factor *fix = container_of(clk, struct clk_fixed_factor, clk);
if (clk->flags & CLK_SET_RATE_PARENT) {
- printk("%s: %ld -> parent %ld\n", __func__, rate, rate * fix->div / fix->mult);
return clk_set_rate(clk_get_parent(clk), rate * fix->div / fix->mult);
}