2022-11-03 13:36:24

by Cosmin Tanislav

[permalink] [raw]
Subject: [PATCH v4 03/13] dt-bindings: iio: temperature: ltc2983: use hex for sensor address

From: Cosmin Tanislav <[email protected]>

Addresses should be in hex, fix it.

Although the driver initially specified 1-20, it can be made free-range
since the address is supposed to match reg, onto which we can impose
restrictions based on the compatible property value.

Signed-off-by: Cosmin Tanislav <[email protected]>
---
.../devicetree/bindings/iio/temperature/adi,ltc2983.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml b/Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
index 82667adc85b1..29f6fa5e2529 100644
--- a/Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
+++ b/Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
@@ -55,7 +55,7 @@ properties:
const: 0

patternProperties:
- "@([1-9]|1[0-9]|20)$":
+ "@([0-9a-f]+)$":
type: object

properties:
--
2.38.1



2022-11-07 17:48:15

by Rob Herring

[permalink] [raw]
Subject: Re: [PATCH v4 03/13] dt-bindings: iio: temperature: ltc2983: use hex for sensor address


On Thu, 03 Nov 2022 15:00:31 +0200, Cosmin Tanislav wrote:
> From: Cosmin Tanislav <[email protected]>
>
> Addresses should be in hex, fix it.
>
> Although the driver initially specified 1-20, it can be made free-range
> since the address is supposed to match reg, onto which we can impose
> restrictions based on the compatible property value.
>
> Signed-off-by: Cosmin Tanislav <[email protected]>
> ---
> .../devicetree/bindings/iio/temperature/adi,ltc2983.yaml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>

Acked-by: Rob Herring <[email protected]>