On Tue, Sep 01, 2026 at 07:47:55PM +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 Acked-by: Conor Dooley pw-bot: not-applicable > --- > Cc: Conor Dooley > Cc: Flaviu Nistor > Cc: Guenter Roeck > Cc: Krzysztof Kozlowski > Cc: Rob Herring > 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. > V3: Rebase on top of 1/2 dt-bindings: hwmon: tmp102: Fix up TMP103 bindings > --- > Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml b/Documentation/devicetree/bindings/hwmon/ti,tmp102.yaml > index 477f478b9dd0f..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 > @@ -13,7 +13,9 @@ properties: > compatible: > oneOf: > - items: > - - const: ti,tmp110 > + - enum: > + - ti,tmp110 > + - ti,tmp113 > - const: ti,tmp102 > - const: ti,tmp102 > - const: ti,tmp103 > -- > 2.53.0 >