From: Arvind Yadav <arvind.yadav.cs@gmail.com>
To: Viresh Kumar <viresh.kumar@linaro.org>
Cc: rjw@rjwysocki.net, linux-pm@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v1] cpufreq: kirkwood-cpufreq:- Handle return value of clk_prepare_enable
Date: Wed, 17 May 2017 11:20:26 +0530 [thread overview]
Message-ID: <8f21257b-f20a-f2cd-3d56-bebe51aad946@gmail.com> (raw)
In-Reply-To: <20170517043445.GZ17481@vireshk-i7>
Yes, I will add check for powersave clk.
Thanks
- Arvind
On Wednesday 17 May 2017 10:04 AM, Viresh Kumar wrote:
> On 16-05-17, 12:41, Arvind Yadav wrote:
>> Here, Clock enable can failed. So adding an error check for
>> clk_prepare_enable.
> Rewrite it as:
>
> clk_prepare_enable() can fail here and we must check its return value.
>
>> Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
>> ---
>> drivers/cpufreq/kirkwood-cpufreq.c | 13 +++++++++++--
>> 1 file changed, 11 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/cpufreq/kirkwood-cpufreq.c b/drivers/cpufreq/kirkwood-cpufreq.c
>> index 1b9bcd7..4c30103 100644
>> --- a/drivers/cpufreq/kirkwood-cpufreq.c
>> +++ b/drivers/cpufreq/kirkwood-cpufreq.c
>> @@ -127,7 +127,12 @@ static int kirkwood_cpufreq_probe(struct platform_device *pdev)
>> return PTR_ERR(priv.cpu_clk);
>> }
>>
>> - clk_prepare_enable(priv.cpu_clk);
>> + err = clk_prepare_enable(priv.cpu_clk);
>> + if (err) {
>> + dev_err(priv.dev, "Unable to prepare cpuclk\n");
>> + return err;
>> + }
>> +
>> kirkwood_freq_table[0].frequency = clk_get_rate(priv.cpu_clk) / 1000;
>>
>> priv.ddr_clk = of_clk_get_by_name(np, "ddrclk");
>> @@ -137,7 +142,11 @@ static int kirkwood_cpufreq_probe(struct platform_device *pdev)
>> goto out_cpu;
>> }
>>
>> - clk_prepare_enable(priv.ddr_clk);
>> + err = clk_prepare_enable(priv.ddr_clk);
>> + if (err) {
>> + dev_err(priv.dev, "Unable to prepare ddrclk\n");
>> + goto out_cpu;
>> + }
>> kirkwood_freq_table[1].frequency = clk_get_rate(priv.ddr_clk) / 1000;
>>
>> priv.powersave_clk = of_clk_get_by_name(np, "powersave");
> There is one more prepare-enable after this. Why not fix that as well
> ?
>
prev parent reply other threads:[~2017-05-17 5:51 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-16 7:11 [PATCH v1] cpufreq: kirkwood-cpufreq:- Handle return value of clk_prepare_enable Arvind Yadav
2017-05-17 4:34 ` Viresh Kumar
2017-05-17 5:50 ` Arvind Yadav [this message]
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=8f21257b-f20a-f2cd-3d56-bebe51aad946@gmail.com \
--to=arvind.yadav.cs@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=rjw@rjwysocki.net \
--cc=viresh.kumar@linaro.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).