From: "yukuai (C)" <yukuai3@huawei.com>
To: <dinguyen@kernel.org>, <mturquette@baylibre.com>, <sboyd@kernel.org>
Cc: <linux-clk@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
<yi.zhang@huawei.com>
Subject: Re: [PATCH V2] clk: socfpga: err out if of_clk_add_provider() failed in __socfpga_pll_init()
Date: Mon, 7 Jun 2021 17:08:01 +0800 [thread overview]
Message-ID: <f706a87b-fb25-8d63-43e5-9e71a0f8fec8@huawei.com> (raw)
In-Reply-To: <20210602084259.1267768-1-yukuai3@huawei.com>
ping ...
On 2021/06/02 16:42, Yu Kuai wrote:
> __socfpga_pll_init() should fail if of_clk_add_provider() failed.
> remove 'rc' in the meantime to avoid gcc
> '-Wunused-but-set-variable' warning.
>
> Signed-off-by: Yu Kuai <yukuai3@huawei.com>
> ---
> changes in V2:
> - remove 'rc' and use err' instead of 'rc'
> - err out if of_clk_add_provider() failed
>
> drivers/clk/socfpga/clk-pll.c | 15 +++++++++------
> 1 file changed, 9 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/clk/socfpga/clk-pll.c b/drivers/clk/socfpga/clk-pll.c
> index dcb573d44034..5a9eec2eca80 100644
> --- a/drivers/clk/socfpga/clk-pll.c
> +++ b/drivers/clk/socfpga/clk-pll.c
> @@ -80,7 +80,6 @@ static __init struct clk_hw *__socfpga_pll_init(struct device_node *node,
> const char *parent_name[SOCFPGA_MAX_PARENTS];
> struct clk_init_data init;
> struct device_node *clkmgr_np;
> - int rc;
> int err;
>
> of_property_read_u32(node, "reg", ®);
> @@ -110,12 +109,16 @@ static __init struct clk_hw *__socfpga_pll_init(struct device_node *node,
> hw_clk = &pll_clk->hw.hw;
>
> err = clk_hw_register(NULL, hw_clk);
> - if (err) {
> - kfree(pll_clk);
> - return ERR_PTR(err);
> - }
> - rc = of_clk_add_provider(node, of_clk_src_simple_get, hw_clk);
> + if (err)
> + goto err_out;
> + err = of_clk_add_provider(node, of_clk_src_simple_get, hw_clk);
> + if (err)
> + goto err_out;
> return hw_clk;
> +
> +err_out:
> + kfree(pll_clk);
> + return ERR_PTR(err);
> }
>
> void __init socfpga_pll_init(struct device_node *node)
>
next prev parent reply other threads:[~2021-06-07 9:08 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-14 6:22 [PATCH] clk: socfpga: remove set but not used variable 'rc' Yu Kuai
2021-05-14 15:11 ` Dinh Nguyen
2021-05-29 9:06 ` yukuai (C)
2021-06-02 7:48 ` Stephen Boyd
2021-06-02 8:11 ` yukuai (C)
2021-06-02 8:42 ` [PATCH V2] clk: socfpga: err out if of_clk_add_provider() failed in __socfpga_pll_init() Yu Kuai
2021-06-07 9:08 ` yukuai (C) [this message]
2021-06-09 21:57 ` Stephen Boyd
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=f706a87b-fb25-8d63-43e5-9e71a0f8fec8@huawei.com \
--to=yukuai3@huawei.com \
--cc=dinguyen@kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=sboyd@kernel.org \
--cc=yi.zhang@huawei.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®