1234567891011121314151617181920212223242526272829303132333435363738 |
- From d0f7ed9dc803e09fb6c1e895efbd1182c9212483 Mon Sep 17 00:00:00 2001
- From: Samuel Holland <[email protected]>
- Date: Sun, 7 Aug 2022 10:49:30 -0500
- Subject: [PATCH 094/117] dt-bindings: display: sun6i-dsi: Fix clock
- conditional
- The A64 case should have limited maxItems, instead of duplicating the
- minItems value from the main binding. While here, simplify the binding
- by making this an "else" case of the two-clock conditional block.
- Fixes: fe5040f2843a ("dt-bindings: sun6i-dsi: Document A64 MIPI-DSI controller")
- Acked-by: Krzysztof Kozlowski <[email protected]>
- Signed-off-by: Samuel Holland <[email protected]>
- ---
- .../bindings/display/allwinner,sun6i-a31-mipi-dsi.yaml | 10 ++--------
- 1 file changed, 2 insertions(+), 8 deletions(-)
- --- a/Documentation/devicetree/bindings/display/allwinner,sun6i-a31-mipi-dsi.yaml
- +++ b/Documentation/devicetree/bindings/display/allwinner,sun6i-a31-mipi-dsi.yaml
- @@ -78,16 +78,10 @@ allOf:
- required:
- - clock-names
-
- - - if:
- - properties:
- - compatible:
- - contains:
- - const: allwinner,sun50i-a64-mipi-dsi
- -
- - then:
- + else:
- properties:
- clocks:
- - minItems: 1
- + maxItems: 1
-
- unevaluatedProperties: false
-
|