devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dt-bindings: mfd: ti,am3359-tscadc: add missing power-domains property
@ 2022-10-25  8:00 Matt Ranostay
  2022-10-25  8:28 ` Miquel Raynal
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Matt Ranostay @ 2022-10-25  8:00 UTC (permalink / raw)
  To: lee, robh+dt, krzysztof.kozlowski+dt, miquel.raynal
  Cc: devicetree, linux-arm-kernel, Matt Ranostay

Add optional power-domains property to avoid the following dt-schema
failures:

tscadc@40200000: 'power-domains' does not match any of the regexes: 'pinctrl-[0-9]+'

Signed-off-by: Matt Ranostay <mranostay@ti.com>
---
 Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml b/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml
index 34bf6a01436f..23a63265be3c 100644
--- a/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml
+++ b/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml
@@ -52,6 +52,9 @@ properties:
     type: object
     description: Magnetic reader
 
+  power-domains:
+    maxItems: 1
+
 required:
   - compatible
   - reg
-- 
2.38.GIT


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

* Re: [PATCH] dt-bindings: mfd: ti,am3359-tscadc: add missing power-domains property
  2022-10-25  8:00 [PATCH] dt-bindings: mfd: ti,am3359-tscadc: add missing power-domains property Matt Ranostay
@ 2022-10-25  8:28 ` Miquel Raynal
  2022-10-25 12:50 ` Krzysztof Kozlowski
  2022-10-31 15:23 ` Lee Jones
  2 siblings, 0 replies; 4+ messages in thread
From: Miquel Raynal @ 2022-10-25  8:28 UTC (permalink / raw)
  To: Matt Ranostay
  Cc: lee, robh+dt, krzysztof.kozlowski+dt, devicetree,
	linux-arm-kernel

Hi Matt,

mranostay@ti.com wrote on Tue, 25 Oct 2022 01:00:14 -0700:

> Add optional power-domains property to avoid the following dt-schema
> failures:
> 
> tscadc@40200000: 'power-domains' does not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Signed-off-by: Matt Ranostay <mranostay@ti.com>

Looks legitimate.

Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>

> ---
>  Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml b/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml
> index 34bf6a01436f..23a63265be3c 100644
> --- a/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml
> +++ b/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml
> @@ -52,6 +52,9 @@ properties:
>      type: object
>      description: Magnetic reader
>  
> +  power-domains:
> +    maxItems: 1
> +
>  required:
>    - compatible
>    - reg


Thanks,
Miquèl

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

* Re: [PATCH] dt-bindings: mfd: ti,am3359-tscadc: add missing power-domains property
  2022-10-25  8:00 [PATCH] dt-bindings: mfd: ti,am3359-tscadc: add missing power-domains property Matt Ranostay
  2022-10-25  8:28 ` Miquel Raynal
@ 2022-10-25 12:50 ` Krzysztof Kozlowski
  2022-10-31 15:23 ` Lee Jones
  2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-25 12:50 UTC (permalink / raw)
  To: Matt Ranostay, lee, robh+dt, krzysztof.kozlowski+dt,
	miquel.raynal
  Cc: devicetree, linux-arm-kernel

On 25/10/2022 04:00, Matt Ranostay wrote:
> Add optional power-domains property to avoid the following dt-schema
> failures:
> 
> tscadc@40200000: 'power-domains' does not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Signed-off-by: Matt Ranostay <mranostay@ti.com>
> ---
>  Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml b/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml
> index 34bf6a01436f..23a63265be3c 100644
> --- a/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml
> +++ b/Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml
> @@ -52,6 +52,9 @@ properties:
>      type: object
>      description: Magnetic reader
>  
> +  power-domains:
> +    maxItems: 1
> +

Just do not keep adding items at the end of the list, but in some
logical place.


Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


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

* Re: [PATCH] dt-bindings: mfd: ti,am3359-tscadc: add missing power-domains property
  2022-10-25  8:00 [PATCH] dt-bindings: mfd: ti,am3359-tscadc: add missing power-domains property Matt Ranostay
  2022-10-25  8:28 ` Miquel Raynal
  2022-10-25 12:50 ` Krzysztof Kozlowski
@ 2022-10-31 15:23 ` Lee Jones
  2 siblings, 0 replies; 4+ messages in thread
From: Lee Jones @ 2022-10-31 15:23 UTC (permalink / raw)
  To: Matt Ranostay
  Cc: robh+dt, krzysztof.kozlowski+dt, miquel.raynal, devicetree,
	linux-arm-kernel

On Tue, 25 Oct 2022, Matt Ranostay wrote:

> Add optional power-domains property to avoid the following dt-schema
> failures:
> 
> tscadc@40200000: 'power-domains' does not match any of the regexes: 'pinctrl-[0-9]+'
> 
> Signed-off-by: Matt Ranostay <mranostay@ti.com>
> ---
>  Documentation/devicetree/bindings/mfd/ti,am3359-tscadc.yaml | 3 +++
>  1 file changed, 3 insertions(+)

Applied, thanks.

-- 
Lee Jones [李琼斯]

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

end of thread, other threads:[~2022-10-31 15:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-25  8:00 [PATCH] dt-bindings: mfd: ti,am3359-tscadc: add missing power-domains property Matt Ranostay
2022-10-25  8:28 ` Miquel Raynal
2022-10-25 12:50 ` Krzysztof Kozlowski
2022-10-31 15:23 ` Lee Jones

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).