All of lore.kernel.org
 help / color / mirror / Atom feed
* [v3 2/3] dt-bindings: hwmon: lm90: add ti,extended-range-enable property
@ 2022-05-17  7:57 Holger Brunck
  2022-05-17  8:23 ` Krzysztof Kozlowski
  0 siblings, 1 reply; 5+ messages in thread
From: Holger Brunck @ 2022-05-17  7:57 UTC (permalink / raw)
  To: linux-hwmon
  Cc: Jean Delvare, Guenter Roeck, Rob Herring, Krzysztof Kozlowski,
	Holger Brunck

Some devices can operate in an extended temperature mode.
Therefore add a boolean ti,extended-range-enable to be able to
select this feature in the device tree node. Also make sure that this
feature can only be enabled for the devices supporting this feature.

Signed-off-by: Holger Brunck <holger.brunck@hitachienergy.com>
---
changes for v3:
  - rename property to ti,extended-range-enable
  - use allOf:if to check if the device supports this feature
  - rephrase commit msg

 .../bindings/hwmon/national,lm90.yaml          | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/Documentation/devicetree/bindings/hwmon/national,lm90.yaml b/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
index 48b7065798b0..1c39b1b4011b 100644
--- a/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
+++ b/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
@@ -53,10 +53,28 @@ properties:
   vcc-supply:
     description: phandle to the regulator that provides the +VCC supply
 
+  ti,extended-range-enable:
+    description: Set to enable extended range temperature.
+    type: boolean
+
 required:
   - compatible
   - reg
 
+allOf:
+  - if:
+      properties:
+        compatible:
+          contains:
+            enum:
+              - adi,adt7461
+              - adi,adt7461a
+              - ti,tmp451
+              - ti,tmp461
+    else:
+      properties:
+        ti,extended-range-enable: false
+
 additionalProperties: false
 
 examples:
-- 
2.35.1.871.gab1f276


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [v3 2/3] dt-bindings: hwmon: lm90: add ti,extended-range-enable property
  2022-05-17  7:57 [v3 2/3] dt-bindings: hwmon: lm90: add ti,extended-range-enable property Holger Brunck
@ 2022-05-17  8:23 ` Krzysztof Kozlowski
  2022-05-17  8:38   ` Holger Brunck
  0 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-05-17  8:23 UTC (permalink / raw)
  To: Holger Brunck, linux-hwmon
  Cc: Jean Delvare, Guenter Roeck, Rob Herring, Krzysztof Kozlowski

On 17/05/2022 09:57, Holger Brunck wrote:
> Some devices can operate in an extended temperature mode.
> Therefore add a boolean ti,extended-range-enable to be able to
> select this feature in the device tree node. Also make sure that this
> feature can only be enabled for the devices supporting this feature.
> 
> Signed-off-by: Holger Brunck <holger.brunck@hitachienergy.com>
> ---
> changes for v3:
>   - rename property to ti,extended-range-enable
>   - use allOf:if to check if the device supports this feature
>   - rephrase commit msg

Please use standard email subjects, so with the PATCH keyword in the
title. `git format-patch` helps here to create proper versioned patch.
Skipping it makes filtering of emails more difficult thus making the
review process less convenient.

Then use standard email-sending tools to properly thread your patchset.
git send-email for example. Kernel docs also explain this.

Currently, this patchset is not possible to apply due to missing threading.

> 
>  .../bindings/hwmon/national,lm90.yaml          | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/hwmon/national,lm90.yaml b/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
> index 48b7065798b0..1c39b1b4011b 100644
> --- a/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
> +++ b/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
> @@ -53,10 +53,28 @@ properties:
>    vcc-supply:
>      description: phandle to the regulator that provides the +VCC supply
>  
> +  ti,extended-range-enable:
> +    description: Set to enable extended range temperature.
> +    type: boolean
> +
>  required:
>    - compatible
>    - reg
>  
> +allOf:
> +  - if:

not:
and then skip else

> +      properties:
> +        compatible:
> +          contains:
> +            enum:
> +              - adi,adt7461
> +              - adi,adt7461a
> +              - ti,tmp451
> +              - ti,tmp461
> +    else:
> +      properties:
> +        ti,extended-range-enable: false
> +
>  additionalProperties: false
>  
>  examples:


Best regards,
Krzysztof

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [v3 2/3] dt-bindings: hwmon: lm90: add ti,extended-range-enable property
  2022-05-17  8:23 ` Krzysztof Kozlowski
@ 2022-05-17  8:38   ` Holger Brunck
  2022-05-17  8:41     ` Krzysztof Kozlowski
  0 siblings, 1 reply; 5+ messages in thread
From: Holger Brunck @ 2022-05-17  8:38 UTC (permalink / raw)
  To: Krzysztof Kozlowski, linux-hwmon
  Cc: Jean Delvare, Guenter Roeck, Rob Herring, Krzysztof Kozlowski

> On 17/05/2022 09:57, Holger Brunck wrote:
> > Some devices can operate in an extended temperature mode.
> > Therefore add a boolean ti,extended-range-enable to be able to select
> > this feature in the device tree node. Also make sure that this feature
> > can only be enabled for the devices supporting this feature.
> >
> > Signed-off-by: Holger Brunck <holger.brunck@hitachienergy.com>
> > ---
> > changes for v3:
> >   - rename property to ti,extended-range-enable
> >   - use allOf:if to check if the device supports this feature
> >   - rephrase commit msg
> 
> Please use standard email subjects, so with the PATCH keyword in the title.
> `git format-patch` helps here to create proper versioned patch.

I did this but I used only "--subject-prefix=v3" instead of
"--subject-prefix="PATCH v3". I will change that for the next version.

> Skipping it makes filtering of emails more difficult thus making the review
> process less convenient.
>

yes.
 
> Then use standard email-sending tools to properly thread your patchset.
> git send-email for example. Kernel docs also explain this.
> 

I used "git send-email" but I guess my problem was that I was sending patch
per patch as I had a  different set of recipients in the CC list.
 
> Currently, this patchset is not possible to apply due to missing threading.
>

Ok. So would "git send-email --to ... --cc ... 000*" take care of correct
threading  as it send is handled from one command?
 
> >
> >  .../bindings/hwmon/national,lm90.yaml          | 18 ++++++++++++++++++
> >  1 file changed, 18 insertions(+)
> >
> > diff --git
> > a/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
> > b/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
> > index 48b7065798b0..1c39b1b4011b 100644
> > --- a/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
> > +++ b/Documentation/devicetree/bindings/hwmon/national,lm90.yaml
> > @@ -53,10 +53,28 @@ properties:
> >    vcc-supply:
> >      description: phandle to the regulator that provides the +VCC
> > supply
> >
> > +  ti,extended-range-enable:
> > +    description: Set to enable extended range temperature.
> > +    type: boolean
> > +
> >  required:
> >    - compatible
> >    - reg
> >
> > +allOf:
> > +  - if:
> 
> not:
> and then skip else
> 

ok.

Best regards
Holger


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [v3 2/3] dt-bindings: hwmon: lm90: add ti,extended-range-enable property
  2022-05-17  8:38   ` Holger Brunck
@ 2022-05-17  8:41     ` Krzysztof Kozlowski
  2022-05-17  9:09       ` Holger Brunck
  0 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-05-17  8:41 UTC (permalink / raw)
  To: Holger Brunck, linux-hwmon
  Cc: Jean Delvare, Guenter Roeck, Rob Herring, Krzysztof Kozlowski

On 17/05/2022 10:38, Holger Brunck wrote:
>> On 17/05/2022 09:57, Holger Brunck wrote:
>>> Some devices can operate in an extended temperature mode.
>>> Therefore add a boolean ti,extended-range-enable to be able to select
>>> this feature in the device tree node. Also make sure that this feature
>>> can only be enabled for the devices supporting this feature.
>>>
>>> Signed-off-by: Holger Brunck <holger.brunck@hitachienergy.com>
>>> ---
>>> changes for v3:
>>>   - rename property to ti,extended-range-enable
>>>   - use allOf:if to check if the device supports this feature
>>>   - rephrase commit msg
>>
>> Please use standard email subjects, so with the PATCH keyword in the title.
>> `git format-patch` helps here to create proper versioned patch.
> 
> I did this but I used only "--subject-prefix=v3" instead of
> "--subject-prefix="PATCH v3". I will change that for the next version.

Before sending you can always review the mails. The easiest is anyway
"git format-patch -3 -v3"

> 
>> Skipping it makes filtering of emails more difficult thus making the review
>> process less convenient.
>>
> 
> yes.
>  
>> Then use standard email-sending tools to properly thread your patchset.
>> git send-email for example. Kernel docs also explain this.
>>
> 
> I used "git send-email" but I guess my problem was that I was sending patch
> per patch as I had a  different set of recipients in the CC list.

The recipients list should be the same, why it's different set?

>  
>> Currently, this patchset is not possible to apply due to missing threading.
>>
> 
> Ok. So would "git send-email --to ... --cc ... 000*" take care of correct
> threading  as it send is handled from one command?

Yes.

You can send it also one-by-one with proper threading, if for some
reason you do not want to follow the easy path. Regardless which way you
choose - easy or manual - just be sure that effect is correct and the same.



Best regards,
Krzysztof

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [v3 2/3] dt-bindings: hwmon: lm90: add ti,extended-range-enable property
  2022-05-17  8:41     ` Krzysztof Kozlowski
@ 2022-05-17  9:09       ` Holger Brunck
  0 siblings, 0 replies; 5+ messages in thread
From: Holger Brunck @ 2022-05-17  9:09 UTC (permalink / raw)
  To: Krzysztof Kozlowski, linux-hwmon
  Cc: Jean Delvare, Guenter Roeck, Rob Herring, Krzysztof Kozlowski

> >> On 17/05/2022 09:57, Holger Brunck wrote:
> >>> Some devices can operate in an extended temperature mode.
> >>> Therefore add a boolean ti,extended-range-enable to be able to
> >>> select this feature in the device tree node. Also make sure that
> >>> this feature can only be enabled for the devices supporting this feature.
> >>>
> >>> Signed-off-by: Holger Brunck <holger.brunck@hitachienergy.com>
> >>> ---
> >>> changes for v3:
> >>>   - rename property to ti,extended-range-enable
> >>>   - use allOf:if to check if the device supports this feature
> >>>   - rephrase commit msg
> >>
> >> Please use standard email subjects, so with the PATCH keyword in the
> title.
> >> `git format-patch` helps here to create proper versioned patch.
> >
> > I did this but I used only "--subject-prefix=v3" instead of
> > "--subject-prefix="PATCH v3". I will change that for the next version.
> 
> Before sending you can always review the mails. The easiest is anyway "git
> format-patch -3 -v3"
> 

thanks, the -v3 option I didn't know.
 
> >
> >> Skipping it makes filtering of emails more difficult thus making the
> >> review process less convenient.
> >>
> >
> > yes.
> >
> >> Then use standard email-sending tools to properly thread your patchset.
> >> git send-email for example. Kernel docs also explain this.
> >>
> >
> > I used "git send-email" but I guess my problem was that I was sending
> > patch per patch as I had a  different set of recipients in the CC list.
> 
> The recipients list should be the same, why it's different set?
> 

I thought the changes in driver code is not relevant to the persons reviewing
the DT bindings part. But I will change that in the next round and keep the
same cc list for the whole series.

> >
> >> Currently, this patchset is not possible to apply due to missing threading.
> >>
> >
> > Ok. So would "git send-email --to ... --cc ... 000*" take care of
> > correct threading  as it send is handled from one command?
> 
> Yes.
> 
> You can send it also one-by-one with proper threading, if for some reason
> you do not want to follow the easy path. Regardless which way you choose -
> easy or manual - just be sure that effect is correct and the same.
> 

ok I see. Thanks for your help.

Best regards
Holger


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-05-17  9:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-17  7:57 [v3 2/3] dt-bindings: hwmon: lm90: add ti,extended-range-enable property Holger Brunck
2022-05-17  8:23 ` Krzysztof Kozlowski
2022-05-17  8:38   ` Holger Brunck
2022-05-17  8:41     ` Krzysztof Kozlowski
2022-05-17  9:09       ` Holger Brunck

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.