2021-07-27 16:03:03

by Geert Uytterhoeven

[permalink] [raw]
Subject: [PATCH v2] dt-bindings: memory: renesas,rpc-if: Miscellaneous improvements

- Fix rejection of legitimate flash subnodes containing multiple
compatible values,
- Add missing list of required properties.

Signed-off-by: Geert Uytterhoeven <[email protected]>
---
v2:
- Drop #{address,size}-cells.
---
.../memory-controllers/renesas,rpc-if.yaml | 17 ++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/Documentation/devicetree/bindings/memory-controllers/renesas,rpc-if.yaml b/Documentation/devicetree/bindings/memory-controllers/renesas,rpc-if.yaml
index 990489fdd2ac33fe..d25072c414e45326 100644
--- a/Documentation/devicetree/bindings/memory-controllers/renesas,rpc-if.yaml
+++ b/Documentation/devicetree/bindings/memory-controllers/renesas,rpc-if.yaml
@@ -61,12 +61,23 @@ patternProperties:
type: object
properties:
compatible:
- enum:
- - cfi-flash
- - jedec,spi-nor
+ contains:
+ enum:
+ - cfi-flash
+ - jedec,spi-nor

unevaluatedProperties: false

+required:
+ - compatible
+ - reg
+ - reg-names
+ - clocks
+ - power-domains
+ - resets
+ - '#address-cells'
+ - '#size-cells'
+
examples:
- |
#include <dt-bindings/clock/renesas-cpg-mssr.h>
--
2.25.1



2021-08-02 20:42:39

by Rob Herring (Arm)

[permalink] [raw]
Subject: Re: [PATCH v2] dt-bindings: memory: renesas,rpc-if: Miscellaneous improvements

On Tue, 27 Jul 2021 18:01:05 +0200, Geert Uytterhoeven wrote:
> - Fix rejection of legitimate flash subnodes containing multiple
> compatible values,
> - Add missing list of required properties.
>
> Signed-off-by: Geert Uytterhoeven <[email protected]>
> ---
> v2:
> - Drop #{address,size}-cells.
> ---
> .../memory-controllers/renesas,rpc-if.yaml | 17 ++++++++++++++---
> 1 file changed, 14 insertions(+), 3 deletions(-)
>

Applied, thanks!