From: Chanwoo Choi <cw00.choi@samsung.com>
To: Bjorn Andersson <bjorn.andersson@linaro.org>,
MyungJoo Ham <myungjoo.ham@samsung.com>,
Kyungmin Park <kyungmin.park@samsung.com>
Cc: linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] PM / devfreq: Propagate error from devfreq_add_device()
Date: Mon, 06 Nov 2017 07:41:29 +0900 [thread overview]
Message-ID: <59FF9399.6010305@samsung.com> (raw)
In-Reply-To: <20171104033828.16773-1-bjorn.andersson@linaro.org>
Hi,
On 2017년 11월 04일 12:38, Bjorn Andersson wrote:
> Propagate the error of devfreq_add_device() in devm_devfreq_add_device()
> rather than statically returning ENOMEM. This makes it slightly faster
> to pinpoint the cause of a returned error.
>
> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
> ---
> drivers/devfreq/devfreq.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/devfreq/devfreq.c b/drivers/devfreq/devfreq.c
> index 78fb496ecb4e..99c4021fc33b 100644
> --- a/drivers/devfreq/devfreq.c
> +++ b/drivers/devfreq/devfreq.c
> @@ -737,7 +737,7 @@ struct devfreq *devm_devfreq_add_device(struct device *dev,
> devfreq = devfreq_add_device(dev, profile, governor_name, data);
> if (IS_ERR(devfreq)) {
> devres_free(ptr);
> - return ERR_PTR(-ENOMEM);
> + return devfreq;
> }
>
> *ptr = devfreq;
>
Looks good to me.
Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
But, you better to send this patch to the 'stable@vger.kernel.org'
with the fixes information as following:
Fixes: 8cd84092d35e ("PM / devfreq: Add resource-managed function for devfreq device")
Cc: stable@vger.kernel.org
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
--
Best Regards,
Chanwoo Choi
Samsung Electronics
prev parent reply other threads:[~2017-11-05 22:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20171104033835epcas3p2a0e62915bf40aab150c78b4a3d341b13@epcas3p2.samsung.com>
2017-11-04 3:38 ` [PATCH] PM / devfreq: Propagate error from devfreq_add_device() Bjorn Andersson
2017-11-05 22:41 ` Chanwoo Choi [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=59FF9399.6010305@samsung.com \
--to=cw00.choi@samsung.com \
--cc=bjorn.andersson@linaro.org \
--cc=kyungmin.park@samsung.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=myungjoo.ham@samsung.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