From: s.hauer@pengutronix.de (Sascha Hauer)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] clk: clk_calc_new_rates() required for parent only if CLK_SET_RATE_PARENT is set
Date: Wed, 11 Apr 2012 08:43:59 +0200 [thread overview]
Message-ID: <20120411064359.GD20478@pengutronix.de> (raw)
In-Reply-To: <0b5e799807b09e47db1bf2805359aae36d947f60.1334124495.git.viresh.kumar@st.com>
On Wed, Apr 11, 2012 at 11:38:53AM +0530, Viresh Kumar wrote:
> We need to call clk_calc_new_rates() for parent clock only when we have
> CLK_SET_RATE_PARENT flag set for clock.
>
> This patch fixes it.
>
> Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
I see no functional change in this patch. With or without this patch we
only call clk_calc_new_rates() when the parent rate actually changed.
The code is easier to read with this patch and may be slightly more
efficient, so:
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
> ---
> drivers/clk/clk.c | 15 +++++++--------
> 1 files changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
> index 2f58455..56e32a1 100644
> --- a/drivers/clk/clk.c
> +++ b/drivers/clk/clk.c
> @@ -780,15 +780,14 @@ static struct clk *clk_calc_new_rates(struct clk *clk, unsigned long rate)
> goto out;
> }
>
> - if (clk->flags & CLK_SET_RATE_PARENT)
> - new_rate = clk->ops->round_rate(clk->hw, rate, &best_parent_rate);
> - else
> - new_rate = clk->ops->round_rate(clk->hw, rate, NULL);
> -
> - if (best_parent_rate != clk->parent->rate) {
> - top = clk_calc_new_rates(clk->parent, best_parent_rate);
> + if (clk->flags & CLK_SET_RATE_PARENT) {
> + new_rate = clk->ops->round_rate(clk->hw, rate,
> + &best_parent_rate);
>
> - goto out;
> + if (best_parent_rate != clk->parent->rate)
> + top = clk_calc_new_rates(clk->parent, best_parent_rate);
> + } else {
> + new_rate = clk->ops->round_rate(clk->hw, rate, NULL);
> }
>
> out:
> --
> 1.7.9
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
next prev parent reply other threads:[~2012-04-11 6:43 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-11 6:08 [PATCH] clk: clk_calc_new_rates() required for parent only if CLK_SET_RATE_PARENT is set Viresh Kumar
2012-04-11 6:43 ` Sascha Hauer [this message]
2012-04-11 6:47 ` Viresh Kumar
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120411064359.GD20478@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.