Devicetree
 help / color / mirror / Atom feed
* [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113
@ 2026-09-01 16:09 Marek Vasut
  2026-09-01 16:14 ` sashiko-bot
  2026-09-01 17:37 ` Conor Dooley
  0 siblings, 2 replies; 8+ messages in thread
From: Marek Vasut @ 2026-09-01 16:09 UTC (permalink / raw)
  To: linux-pm
  Cc: Marek Vasut, Conor Dooley, Flaviu Nistor, Guenter Roeck,
	Krzysztof Kozlowski, Rob Herring, devicetree, linux-hwmon,
	linux-kernel

The TMP113 temperature sensor part is register compatible with TMP102,
document it using a fallback compatible. Unlike TMP102 and TMP110, the
TMP113 does have additional unique ID registers, it is up to the driver
to handle those.

Signed-off-by: Marek Vasut <marex@nabladev.com>
---
Cc: Conor Dooley <conor+dt@kernel.org>
Cc: Flaviu Nistor <flaviu.nistor@gmail.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Cc: Krzysztof Kozlowski <krzk+dt@kernel.org>
Cc: Rob Herring <robh@kernel.org>
Cc: devicetree@vger.kernel.org
Cc: linux-hwmon@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
V2: Rebase on current next and resend, resolve a conflict with commit
    d67ec24d3f07 ("dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml")
    Note that the TMP102,110,113 are backward compatible, therefore the
    valid compatible strings are:
    - "ti,tmp110", "ti,tmp102"
    - "ti,tmp113", "ti,tmp102"
    - "ti,tmp102"
    The TMP103 is not backward compatible, it only shares bindings now,
    therefore the only valid compatible string for the TMP103 should be:
    - "ti,tmp103"
    And that is all, no other compatible strings are acceptable here.
---
 .../devicetree/bindings/hwmon/ti,tmp102.yaml          | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml b/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
index 55d9f106465d7..c0b747a9ce0de 100644
--- a/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
+++ b/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
@@ -4,7 +4,7 @@
 $id: http://devicetree.org/schemas/hwmon/ti,tmp102.yaml#
 $schema: http://devicetree.org/meta-schemas/core.yaml#
 
-title: TMP102/TMP103/TMP110 temperature sensor
+title: TMP102/TMP103/TMP110/TMP113 temperature sensor
 
 maintainers:
   - Krzysztof Kozlowski <krzk@kernel.org>
@@ -13,11 +13,12 @@ properties:
   compatible:
     oneOf:
       - items:
+          - enum:
+              - ti,tmp110
+              - ti,tmp113
           - const: ti,tmp102
-          - const: ti,tmp103
-          - const: ti,tmp110
-      - enum:
-          - ti,tmp102
+      - const: ti,tmp102
+      - const: ti,tmp103
 
   interrupts:
     maxItems: 1
-- 
2.53.0


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

* Re: [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113
  2026-09-01 16:09 [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113 Marek Vasut
@ 2026-09-01 16:14 ` sashiko-bot
  2026-09-01 17:37 ` Conor Dooley
  1 sibling, 0 replies; 8+ messages in thread
From: sashiko-bot @ 2026-09-01 16:14 UTC (permalink / raw)
  To: Marek Vasut; +Cc: robh, linux-hwmon, conor+dt, devicetree

> The TMP113 temperature sensor part is register compatible with TMP102,
> document it using a fallback compatible. Unlike TMP102 and TMP110, the
> TMP113 does have additional unique ID registers, it is up to the driver
> to handle those.
> 
> Signed-off-by: Marek Vasut <marex@nabladev.com>

Sashiko has reviewed this patch and found no issues. It looks great!

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260901161008.46948-1-marex@nabladev.com?part=1


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

* Re: [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113
  2026-09-01 16:09 [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113 Marek Vasut
  2026-09-01 16:14 ` sashiko-bot
@ 2026-09-01 17:37 ` Conor Dooley
  2026-09-01 17:47   ` Marek Vasut
  2026-09-01 17:48   ` Guenter Roeck
  1 sibling, 2 replies; 8+ messages in thread
From: Conor Dooley @ 2026-09-01 17:37 UTC (permalink / raw)
  To: Marek Vasut
  Cc: linux-pm, Conor Dooley, Flaviu Nistor, Guenter Roeck,
	Krzysztof Kozlowski, Rob Herring, devicetree, linux-hwmon,
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2595 bytes --]

On Tue, Sep 01, 2026 at 06:09:20PM +0200, Marek Vasut wrote:
> The TMP113 temperature sensor part is register compatible with TMP102,
> document it using a fallback compatible. Unlike TMP102 and TMP110, the
> TMP113 does have additional unique ID registers, it is up to the driver
> to handle those.
> 
> Signed-off-by: Marek Vasut <marex@nabladev.com>
> ---
> Cc: Conor Dooley <conor+dt@kernel.org>
> Cc: Flaviu Nistor <flaviu.nistor@gmail.com>
> Cc: Guenter Roeck <linux@roeck-us.net>
> Cc: Krzysztof Kozlowski <krzk+dt@kernel.org>
> Cc: Rob Herring <robh@kernel.org>
> Cc: devicetree@vger.kernel.org
> Cc: linux-hwmon@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
> V2: Rebase on current next and resend, resolve a conflict with commit
>     d67ec24d3f07 ("dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml")
>     Note that the TMP102,110,113 are backward compatible, therefore the
>     valid compatible strings are:
>     - "ti,tmp110", "ti,tmp102"
>     - "ti,tmp113", "ti,tmp102"
>     - "ti,tmp102"
>     The TMP103 is not backward compatible, it only shares bindings now,
>     therefore the only valid compatible string for the TMP103 should be:
>     - "ti,tmp103"
>     And that is all, no other compatible strings are acceptable here.
> ---
>  .../devicetree/bindings/hwmon/ti,tmp102.yaml          | 11 ++++++-----
>  1 file changed, 6 insertions(+), 5 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml b/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
> index 55d9f106465d7..c0b747a9ce0de 100644
> --- a/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
> +++ b/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
> @@ -4,7 +4,7 @@
>  $id: http://devicetree.org/schemas/hwmon/ti,tmp102.yaml#
>  $schema: http://devicetree.org/meta-schemas/core.yaml#
>  
> -title: TMP102/TMP103/TMP110 temperature sensor
> +title: TMP102/TMP103/TMP110/TMP113 temperature sensor
>  
>  maintainers:
>    - Krzysztof Kozlowski <krzk@kernel.org>
> @@ -13,11 +13,12 @@ properties:
>    compatible:
>      oneOf:
>        - items:
> +          - enum:
> +              - ti,tmp110
> +              - ti,tmp113
>            - const: ti,tmp102
> -          - const: ti,tmp103
> -          - const: ti,tmp110
> -      - enum:
> -          - ti,tmp102
> +      - const: ti,tmp102
> +      - const: ti,tmp103

Should this not be two patches, one fixing the existing stuff and one
adding the 113?

>  
>    interrupts:
>      maxItems: 1
> -- 
> 2.53.0
> 

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113
  2026-09-01 17:37 ` Conor Dooley
@ 2026-09-01 17:47   ` Marek Vasut
  2026-09-01 17:48   ` Guenter Roeck
  1 sibling, 0 replies; 8+ messages in thread
From: Marek Vasut @ 2026-09-01 17:47 UTC (permalink / raw)
  To: Conor Dooley
  Cc: linux-pm, Conor Dooley, Flaviu Nistor, Guenter Roeck,
	Krzysztof Kozlowski, Rob Herring, devicetree, linux-hwmon,
	linux-kernel

On 9/1/26 7:37 PM, Conor Dooley wrote:
> On Tue, Sep 01, 2026 at 06:09:20PM +0200, Marek Vasut wrote:
>> The TMP113 temperature sensor part is register compatible with TMP102,
>> document it using a fallback compatible. Unlike TMP102 and TMP110, the
>> TMP113 does have additional unique ID registers, it is up to the driver
>> to handle those.
>>
>> Signed-off-by: Marek Vasut <marex@nabladev.com>
>> ---
>> Cc: Conor Dooley <conor+dt@kernel.org>
>> Cc: Flaviu Nistor <flaviu.nistor@gmail.com>
>> Cc: Guenter Roeck <linux@roeck-us.net>
>> Cc: Krzysztof Kozlowski <krzk+dt@kernel.org>
>> Cc: Rob Herring <robh@kernel.org>
>> Cc: devicetree@vger.kernel.org
>> Cc: linux-hwmon@vger.kernel.org
>> Cc: linux-kernel@vger.kernel.org
>> ---
>> V2: Rebase on current next and resend, resolve a conflict with commit
>>      d67ec24d3f07 ("dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml")
>>      Note that the TMP102,110,113 are backward compatible, therefore the
>>      valid compatible strings are:
>>      - "ti,tmp110", "ti,tmp102"
>>      - "ti,tmp113", "ti,tmp102"
>>      - "ti,tmp102"
>>      The TMP103 is not backward compatible, it only shares bindings now,
>>      therefore the only valid compatible string for the TMP103 should be:
>>      - "ti,tmp103"
>>      And that is all, no other compatible strings are acceptable here.
>> ---
>>   .../devicetree/bindings/hwmon/ti,tmp102.yaml          | 11 ++++++-----
>>   1 file changed, 6 insertions(+), 5 deletions(-)
>>
>> diff --git a/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml b/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
>> index 55d9f106465d7..c0b747a9ce0de 100644
>> --- a/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
>> +++ b/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
>> @@ -4,7 +4,7 @@
>>   $id: http://devicetree.org/schemas/hwmon/ti,tmp102.yaml#
>>   $schema: http://devicetree.org/meta-schemas/core.yaml#
>>   
>> -title: TMP102/TMP103/TMP110 temperature sensor
>> +title: TMP102/TMP103/TMP110/TMP113 temperature sensor
>>   
>>   maintainers:
>>     - Krzysztof Kozlowski <krzk@kernel.org>
>> @@ -13,11 +13,12 @@ properties:
>>     compatible:
>>       oneOf:
>>         - items:
>> +          - enum:
>> +              - ti,tmp110
>> +              - ti,tmp113
>>             - const: ti,tmp102
>> -          - const: ti,tmp103
>> -          - const: ti,tmp110
>> -      - enum:
>> -          - ti,tmp102
>> +      - const: ti,tmp102
>> +      - const: ti,tmp103
> 
> Should this not be two patches, one fixing the existing stuff and one
> adding the 113?
I can send this as two, sure, will do in v3.

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

* Re: [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113
  2026-09-01 17:37 ` Conor Dooley
  2026-09-01 17:47   ` Marek Vasut
@ 2026-09-01 17:48   ` Guenter Roeck
  2026-09-01 17:58     ` Marek Vasut
  1 sibling, 1 reply; 8+ messages in thread
From: Guenter Roeck @ 2026-09-01 17:48 UTC (permalink / raw)
  To: Conor Dooley, Marek Vasut
  Cc: linux-pm, Conor Dooley, Flaviu Nistor, Krzysztof Kozlowski,
	Rob Herring, devicetree, linux-hwmon, linux-kernel

On 9/1/26 10:37, Conor Dooley wrote:
> On Tue, Sep 01, 2026 at 06:09:20PM +0200, Marek Vasut wrote:
>> The TMP113 temperature sensor part is register compatible with TMP102,
>> document it using a fallback compatible. Unlike TMP102 and TMP110, the
>> TMP113 does have additional unique ID registers, it is up to the driver
>> to handle those.
>>
>> Signed-off-by: Marek Vasut <marex@nabladev.com>
>> ---
>> Cc: Conor Dooley <conor+dt@kernel.org>
>> Cc: Flaviu Nistor <flaviu.nistor@gmail.com>
>> Cc: Guenter Roeck <linux@roeck-us.net>
>> Cc: Krzysztof Kozlowski <krzk+dt@kernel.org>
>> Cc: Rob Herring <robh@kernel.org>
>> Cc: devicetree@vger.kernel.org
>> Cc: linux-hwmon@vger.kernel.org
>> Cc: linux-kernel@vger.kernel.org
>> ---
>> V2: Rebase on current next and resend, resolve a conflict with commit
>>      d67ec24d3f07 ("dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml")
>>      Note that the TMP102,110,113 are backward compatible, therefore the
>>      valid compatible strings are:
>>      - "ti,tmp110", "ti,tmp102"
>>      - "ti,tmp113", "ti,tmp102"
>>      - "ti,tmp102"
>>      The TMP103 is not backward compatible, it only shares bindings now,
>>      therefore the only valid compatible string for the TMP103 should be:
>>      - "ti,tmp103"
>>      And that is all, no other compatible strings are acceptable here.
>> ---
>>   .../devicetree/bindings/hwmon/ti,tmp102.yaml          | 11 ++++++-----
>>   1 file changed, 6 insertions(+), 5 deletions(-)
>>
>> diff --git a/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml b/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
>> index 55d9f106465d7..c0b747a9ce0de 100644
>> --- a/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
>> +++ b/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml
>> @@ -4,7 +4,7 @@
>>   $id: http://devicetree.org/schemas/hwmon/ti,tmp102.yaml#
>>   $schema: http://devicetree.org/meta-schemas/core.yaml#
>>   
>> -title: TMP102/TMP103/TMP110 temperature sensor
>> +title: TMP102/TMP103/TMP110/TMP113 temperature sensor
>>   
>>   maintainers:
>>     - Krzysztof Kozlowski <krzk@kernel.org>
>> @@ -13,11 +13,12 @@ properties:
>>     compatible:
>>       oneOf:
>>         - items:
>> +          - enum:
>> +              - ti,tmp110
>> +              - ti,tmp113
>>             - const: ti,tmp102
>> -          - const: ti,tmp103
>> -          - const: ti,tmp110
>> -      - enum:
>> -          - ti,tmp102
>> +      - const: ti,tmp102
>> +      - const: ti,tmp103
> 
> Should this not be two patches, one fixing the existing stuff and one
> adding the 113?
> 

It is all in -next. Looks like I resolved the conflict when combining
"dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml"
and "dt-bindings: hwmon: tmp102: Document TMP110" the wrong way.
Sorry for that.

Instead of adding more patches on top of it, how about providing a
single patch moving tmp103 and adding tmp110 as well as tmp113
together ? Alternatively, I could drop "dt-bindings: hwmon: tmp102:
Document TMP110", apply the original (non-conflicting version) of
"dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml",
and then tmp110 and tmp113 could be added in a single patch.

Please let me know.

Thanks,
Guenter


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

* Re: [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113
  2026-09-01 17:48   ` Guenter Roeck
@ 2026-09-01 17:58     ` Marek Vasut
  2026-09-01 18:04       ` Conor Dooley
  2026-09-01 18:16       ` Guenter Roeck
  0 siblings, 2 replies; 8+ messages in thread
From: Marek Vasut @ 2026-09-01 17:58 UTC (permalink / raw)
  To: Guenter Roeck, Conor Dooley
  Cc: linux-pm, Conor Dooley, Flaviu Nistor, Krzysztof Kozlowski,
	Rob Herring, devicetree, linux-hwmon, linux-kernel

On 9/1/26 7:48 PM, Guenter Roeck wrote:

Hello Guenter,

>>> @@ -13,11 +13,12 @@ properties:
>>>     compatible:
>>>       oneOf:
>>>         - items:
>>> +          - enum:
>>> +              - ti,tmp110
>>> +              - ti,tmp113
>>>             - const: ti,tmp102
>>> -          - const: ti,tmp103
>>> -          - const: ti,tmp110
>>> -      - enum:
>>> -          - ti,tmp102
>>> +      - const: ti,tmp102
>>> +      - const: ti,tmp103
>>
>> Should this not be two patches, one fixing the existing stuff and one
>> adding the 113?
>>
> 
> It is all in -next. Looks like I resolved the conflict when combining
> "dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml"
> and "dt-bindings: hwmon: tmp102: Document TMP110" the wrong way.
> Sorry for that.

No worries, I hope V3 I just sent fixes it up.

> Instead of adding more patches on top of it, how about providing a
> single patch moving tmp103 and adding tmp110 as well as tmp113
> together ? Alternatively, I could drop "dt-bindings: hwmon: tmp102:
> Document TMP110", apply the original (non-conflicting version) of
> "dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml",
> and then tmp110 and tmp113 could be added in a single patch.
> 
> Please let me know.
I think the broken commit is d67ec24d3f07 ("dt-bindings: hwmon: tmp102: 
move ti,tmp103 out of trivial-devices.yaml") and v3 1/2 is the fix for 
that broken commit. V3 2/2 only adds the missing TMP113 .

So I think there are two options:
- The complicated one -- squash d67ec24d3f07 ("dt-bindings: hwmon: 
tmp102: move ti,tmp103 out of trivial-devices.yaml") and V3 1/2 (and 
either do it in tree, or drop d67ec24d3f07 ("dt-bindings: hwmon: tmp102: 
move ti,tmp103 out of trivial-devices.yaml") and ask for it to be 
updated and resent), then apply that, and apply V3 2/2 (or newer) .
- The simple one -- apply both V3 patches (or whatever newer version is 
good enough) and move on.

Just let me know what you like better.

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

* Re: [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113
  2026-09-01 17:58     ` Marek Vasut
@ 2026-09-01 18:04       ` Conor Dooley
  2026-09-01 18:16       ` Guenter Roeck
  1 sibling, 0 replies; 8+ messages in thread
From: Conor Dooley @ 2026-09-01 18:04 UTC (permalink / raw)
  To: Marek Vasut
  Cc: Guenter Roeck, linux-pm, Conor Dooley, Flaviu Nistor,
	Krzysztof Kozlowski, Rob Herring, devicetree, linux-hwmon,
	linux-kernel

[-- Attachment #1: Type: text/plain, Size: 2276 bytes --]

On Tue, Sep 01, 2026 at 07:58:51PM +0200, Marek Vasut wrote:
> On 9/1/26 7:48 PM, Guenter Roeck wrote:
> 
> Hello Guenter,
> 
> > > > @@ -13,11 +13,12 @@ properties:
> > > >     compatible:
> > > >       oneOf:
> > > >         - items:
> > > > +          - enum:
> > > > +              - ti,tmp110
> > > > +              - ti,tmp113
> > > >             - const: ti,tmp102
> > > > -          - const: ti,tmp103
> > > > -          - const: ti,tmp110
> > > > -      - enum:
> > > > -          - ti,tmp102
> > > > +      - const: ti,tmp102
> > > > +      - const: ti,tmp103
> > > 
> > > Should this not be two patches, one fixing the existing stuff and one
> > > adding the 113?
> > > 
> > 
> > It is all in -next. Looks like I resolved the conflict when combining
> > "dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml"
> > and "dt-bindings: hwmon: tmp102: Document TMP110" the wrong way.
> > Sorry for that.
> 
> No worries, I hope V3 I just sent fixes it up.
> 
> > Instead of adding more patches on top of it, how about providing a
> > single patch moving tmp103 and adding tmp110 as well as tmp113
> > together ? Alternatively, I could drop "dt-bindings: hwmon: tmp102:
> > Document TMP110", apply the original (non-conflicting version) of
> > "dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml",
> > and then tmp110 and tmp113 could be added in a single patch.
> > 
> > Please let me know.
> I think the broken commit is d67ec24d3f07 ("dt-bindings: hwmon: tmp102: move
> ti,tmp103 out of trivial-devices.yaml") and v3 1/2 is the fix for that
> broken commit. V3 2/2 only adds the missing TMP113 .
> 
> So I think there are two options:
> - The complicated one -- squash d67ec24d3f07 ("dt-bindings: hwmon: tmp102:
> move ti,tmp103 out of trivial-devices.yaml") and V3 1/2 (and either do it in
> tree, or drop d67ec24d3f07 ("dt-bindings: hwmon: tmp102: move ti,tmp103 out
> of trivial-devices.yaml") and ask for it to be updated and resent), then
> apply that, and apply V3 2/2 (or newer) .
> - The simple one -- apply both V3 patches (or whatever newer version is good
> enough) and move on.
> 
> Just let me know what you like better.

Either works for me fwiw, v3 looks fine.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113
  2026-09-01 17:58     ` Marek Vasut
  2026-09-01 18:04       ` Conor Dooley
@ 2026-09-01 18:16       ` Guenter Roeck
  1 sibling, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2026-09-01 18:16 UTC (permalink / raw)
  To: Marek Vasut, Conor Dooley
  Cc: linux-pm, Conor Dooley, Flaviu Nistor, Krzysztof Kozlowski,
	Rob Herring, devicetree, linux-hwmon, linux-kernel

On 9/1/26 10:58, Marek Vasut wrote:
> On 9/1/26 7:48 PM, Guenter Roeck wrote:
> 
> Hello Guenter,
> 
>>>> @@ -13,11 +13,12 @@ properties:
>>>>     compatible:
>>>>       oneOf:
>>>>         - items:
>>>> +          - enum:
>>>> +              - ti,tmp110
>>>> +              - ti,tmp113
>>>>             - const: ti,tmp102
>>>> -          - const: ti,tmp103
>>>> -          - const: ti,tmp110
>>>> -      - enum:
>>>> -          - ti,tmp102
>>>> +      - const: ti,tmp102
>>>> +      - const: ti,tmp103
>>>
>>> Should this not be two patches, one fixing the existing stuff and one
>>> adding the 113?
>>>
>>
>> It is all in -next. Looks like I resolved the conflict when combining
>> "dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml"
>> and "dt-bindings: hwmon: tmp102: Document TMP110" the wrong way.
>> Sorry for that.
> 
> No worries, I hope V3 I just sent fixes it up.
> 
>> Instead of adding more patches on top of it, how about providing a
>> single patch moving tmp103 and adding tmp110 as well as tmp113
>> together ? Alternatively, I could drop "dt-bindings: hwmon: tmp102:
>> Document TMP110", apply the original (non-conflicting version) of
>> "dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml",
>> and then tmp110 and tmp113 could be added in a single patch.
>>
>> Please let me know.
> I think the broken commit is d67ec24d3f07 ("dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml") and v3 1/2 is the fix for that broken commit. V3 2/2 only adds the missing TMP113 .
> 
> So I think there are two options:
> - The complicated one -- squash d67ec24d3f07 ("dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml") and V3 1/2 (and either do it in tree, or drop d67ec24d3f07 ("dt-bindings: hwmon: tmp102: move ti,tmp103 out of trivial-devices.yaml") and ask for it to be updated and resent), then apply that, and apply V3 2/2 (or newer) .

I'll do that, assuming that Conor is ok with both patches.
No need to resend anything.

Thanks,
Guenter


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

end of thread, other threads:[~2026-09-01 18:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-09-01 16:09 [PATCH v2] dt-bindings: hwmon: tmp102: Document TMP113 Marek Vasut
2026-09-01 16:14 ` sashiko-bot
2026-09-01 17:37 ` Conor Dooley
2026-09-01 17:47   ` Marek Vasut
2026-09-01 17:48   ` Guenter Roeck
2026-09-01 17:58     ` Marek Vasut
2026-09-01 18:04       ` Conor Dooley
2026-09-01 18:16       ` Guenter Roeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox