* [PATCH] thermal: Fix thermal_zone_of_sensor_register to match documentation
@ 2015-09-08 13:51 Punit Agrawal
2015-09-10 8:39 ` Javi Merino
0 siblings, 1 reply; 4+ messages in thread
From: Punit Agrawal @ 2015-09-08 13:51 UTC (permalink / raw)
To: edubezval, rui.zhang; +Cc: linux-pm, linux-kernel, linux, Punit Agrawal
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(-)
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
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] thermal: Fix thermal_zone_of_sensor_register to match documentation
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
2015-09-10 8:44 ` Zhang, Rui
0 siblings, 1 reply; 4+ messages in thread
From: Javi Merino @ 2015-09-10 8:39 UTC (permalink / raw)
To: Punit Agrawal
Cc: edubezval@gmail.com, rui.zhang@intel.com,
linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
linux@roeck-us.net
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH] thermal: Fix thermal_zone_of_sensor_register to match documentation
2015-09-10 8:39 ` Javi Merino
@ 2015-09-10 8:44 ` Zhang, Rui
0 siblings, 0 replies; 4+ messages in thread
From: Zhang, Rui @ 2015-09-10 8:44 UTC (permalink / raw)
To: Javi Merino, Punit Agrawal
Cc: edubezval@gmail.com, linux-pm@vger.kernel.org,
linux-kernel@vger.kernel.org, linux@roeck-us.net
> -----Original Message-----
> From: Javi Merino [mailto:javi.merino@arm.com]
> Sent: Thursday, September 10, 2015 4:39 PM
> To: Punit Agrawal
> Cc: edubezval@gmail.com; Zhang, Rui; linux-pm@vger.kernel.org; linux-
> kernel@vger.kernel.org; linux@roeck-us.net
> Subject: Re: [PATCH] thermal: Fix thermal_zone_of_sensor_register to
> match documentation
> Importance: High
>
> 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?
> >
Will apply after 4.3-rc1 merge window closed.
Thanks,
rui
> > 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
^ permalink raw reply [flat|nested] 4+ messages in thread
* RE: [PATCH] thermal: Fix thermal_zone_of_sensor_register to match documentation
@ 2015-09-10 8:44 ` Zhang, Rui
0 siblings, 0 replies; 4+ messages in thread
From: Zhang, Rui @ 2015-09-10 8:44 UTC (permalink / raw)
To: Javi Merino, Punit Agrawal
Cc: edubezval@gmail.com, linux-pm@vger.kernel.org,
linux-kernel@vger.kernel.org, linux@roeck-us.net
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 2034 bytes --]
> -----Original Message-----
> From: Javi Merino [mailto:javi.merino@arm.com]
> Sent: Thursday, September 10, 2015 4:39 PM
> To: Punit Agrawal
> Cc: edubezval@gmail.com; Zhang, Rui; linux-pm@vger.kernel.org; linux-
> kernel@vger.kernel.org; linux@roeck-us.net
> Subject: Re: [PATCH] thermal: Fix thermal_zone_of_sensor_register to
> match documentation
> Importance: High
>
> 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?
> >
Will apply after 4.3-rc1 merge window closed.
Thanks,
rui
> > 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
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-09-10 8:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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
2015-09-10 8:44 ` Zhang, Rui
2015-09-10 8:44 ` Zhang, Rui
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.