[PATCH] clk: Don't set clk->new_rate twice
Viresh Kumar
viresh.kumar at st.com
Wed Apr 11 03:47:11 EDT 2012
if (!clk->ops->round_rate && (clk->flags & CLK_SET_RATE_PARENT)) is true, then
we don't need to set clk->new_rate here, as we will call clk_calc_subtree()
afterwards and it also sets clk->new_rate.
Signed-off-by: Viresh Kumar <viresh.kumar at st.com>
---
drivers/clk/clk.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index 56e32a1..9d11c19 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -775,7 +775,7 @@ static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
if (!clk->ops->round_rate && (clk->flags & CLK_SET_RATE_PARENT)) {
top = clk_calc_new_rates(clk->parent, rate);
- new_rate = clk->new_rate = clk->parent->new_rate;
+ new_rate = clk->parent->new_rate;
goto out;
}
--
1.7.9
More information about the linux-arm-kernel
mailing list