From: Javi Merino <javi.merino@arm.com>
To: Punit Agrawal <punit.agrawal@arm.com>
Cc: "edubezval@gmail.com" <edubezval@gmail.com>,
"rui.zhang@intel.com" <rui.zhang@intel.com>,
"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux@roeck-us.net" <linux@roeck-us.net>
Subject: Re: [PATCH] thermal: Fix thermal_zone_of_sensor_register to match documentation
Date: Thu, 10 Sep 2015 09:39:24 +0100 [thread overview]
Message-ID: <20150910083923.GA2730@e104805> (raw)
In-Reply-To: <1441720272-17338-1-git-send-email-punit.agrawal@arm.com>
On Tue, Sep 08, 2015 at 02:51:12PM +0100, Punit Agrawal wrote:
> thermal_zone_of_sensor_register is documented as returning a pointer
> to either a valid thermal_zone_device on success, or a corresponding
> ERR_PTR() value.
>
> In contrast, the function returns NULL when THERMAL_OF is configured
> off. Fix this.
>
> Signed-off-by: Punit Agrawal <punit.agrawal@arm.com>
> Acked-by: Guenter Roeck <linux@roeck-us.net>
> Cc: Eduardo Valentin <edubezval@gmail.com>
> Cc: Zhang Rui <rui.zhang@intel.com>
> ---
> Hi Eduardo, Rui,
>
> This patch has been on the list without any objection for sometime [0]
> now. Could you pick this up for the next rc please?
>
> Thanks,
> Punit
>
> [0] http://thread.gmane.org/gmane.linux.kernel/2011466/focus=2013175
>
> include/linux/thermal.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
FWIW,
Reviewed-by: Javi Merino <javi.merino@arm.com>
Cheers,
Javi
> diff --git a/include/linux/thermal.h b/include/linux/thermal.h
> index 037e9df..f344e51 100644
> --- a/include/linux/thermal.h
> +++ b/include/linux/thermal.h
> @@ -364,7 +364,7 @@ static inline struct thermal_zone_device *
> thermal_zone_of_sensor_register(struct device *dev, int id, void *data,
> const struct thermal_zone_of_device_ops *ops)
> {
> - return NULL;
> + return ERR_PTR(-ENODEV);
> }
>
> static inline
> --
> 2.5.0
next prev parent reply other threads:[~2015-09-10 8:39 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-08 13:51 [PATCH] thermal: Fix thermal_zone_of_sensor_register to match documentation Punit Agrawal
2015-09-10 8:39 ` Javi Merino [this message]
2015-09-10 8:44 ` Zhang, Rui
2015-09-10 8:44 ` Zhang, Rui
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=20150910083923.GA2730@e104805 \
--to=javi.merino@arm.com \
--cc=edubezval@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=punit.agrawal@arm.com \
--cc=rui.zhang@intel.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 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.