* [PATCH 1/2] dt-bindings: display: sprd,sharkl3-dpu: Fix missing clocks constraints
@ 2025-07-20 12:30 Krzysztof Kozlowski
2025-07-20 12:30 ` [PATCH 2/2] dt-bindings: display: sprd,sharkl3-dsi-host: " Krzysztof Kozlowski
2025-07-23 4:14 ` [PATCH 1/2] dt-bindings: display: sprd,sharkl3-dpu: " Rob Herring (Arm)
0 siblings, 2 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-07-20 12:30 UTC (permalink / raw)
To: David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Orson Zhai, Baolin Wang, Chunyan Zhang, Kevin Tang, dri-devel,
devicetree, linux-kernel
Cc: Krzysztof Kozlowski, stable
'minItems' alone does not impose upper bound, unlike 'maxItems' which
implies lower bound. Add missing clock constraint so the list will have
exact number of items (clocks).
Fixes: 8cae15c60cf0 ("dt-bindings: display: add Unisoc's dpu bindings")
Cc: <stable@vger.kernel.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
.../devicetree/bindings/display/sprd/sprd,sharkl3-dpu.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/display/sprd/sprd,sharkl3-dpu.yaml b/Documentation/devicetree/bindings/display/sprd/sprd,sharkl3-dpu.yaml
index 4ebea60b8c5b..8c52fa0ea5f8 100644
--- a/Documentation/devicetree/bindings/display/sprd/sprd,sharkl3-dpu.yaml
+++ b/Documentation/devicetree/bindings/display/sprd/sprd,sharkl3-dpu.yaml
@@ -25,7 +25,7 @@ properties:
maxItems: 1
clocks:
- minItems: 2
+ maxItems: 2
clock-names:
items:
--
2.48.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] dt-bindings: display: sprd,sharkl3-dsi-host: Fix missing clocks constraints
2025-07-20 12:30 [PATCH 1/2] dt-bindings: display: sprd,sharkl3-dpu: Fix missing clocks constraints Krzysztof Kozlowski
@ 2025-07-20 12:30 ` Krzysztof Kozlowski
2025-07-23 4:14 ` Rob Herring (Arm)
2025-07-23 4:14 ` [PATCH 1/2] dt-bindings: display: sprd,sharkl3-dpu: " Rob Herring (Arm)
1 sibling, 1 reply; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-07-20 12:30 UTC (permalink / raw)
To: David Airlie, Simona Vetter, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Orson Zhai, Baolin Wang, Chunyan Zhang, Kevin Tang, dri-devel,
devicetree, linux-kernel
Cc: Krzysztof Kozlowski, stable
'minItems' alone does not impose upper bound, unlike 'maxItems' which
implies lower bound. Add missing clock constraint so the list will have
exact number of items (clocks).
Fixes: 2295bbd35edb ("dt-bindings: display: add Unisoc's mipi dsi controller bindings")
Cc: <stable@vger.kernel.org>
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
.../devicetree/bindings/display/sprd/sprd,sharkl3-dsi-host.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Documentation/devicetree/bindings/display/sprd/sprd,sharkl3-dsi-host.yaml b/Documentation/devicetree/bindings/display/sprd/sprd,sharkl3-dsi-host.yaml
index bc5594d18643..300bf2252c3e 100644
--- a/Documentation/devicetree/bindings/display/sprd/sprd,sharkl3-dsi-host.yaml
+++ b/Documentation/devicetree/bindings/display/sprd/sprd,sharkl3-dsi-host.yaml
@@ -20,7 +20,7 @@ properties:
maxItems: 2
clocks:
- minItems: 1
+ maxItems: 1
clock-names:
items:
--
2.48.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] dt-bindings: display: sprd,sharkl3-dsi-host: Fix missing clocks constraints
2025-07-20 12:30 ` [PATCH 2/2] dt-bindings: display: sprd,sharkl3-dsi-host: " Krzysztof Kozlowski
@ 2025-07-23 4:14 ` Rob Herring (Arm)
0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring (Arm) @ 2025-07-23 4:14 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Thomas Zimmermann, devicetree, Maxime Ripard, Krzysztof Kozlowski,
linux-kernel, stable, Orson Zhai, Chunyan Zhang, Simona Vetter,
Conor Dooley, Baolin Wang, David Airlie, Kevin Tang, dri-devel,
Maarten Lankhorst
On Sun, 20 Jul 2025 14:30:05 +0200, Krzysztof Kozlowski wrote:
> 'minItems' alone does not impose upper bound, unlike 'maxItems' which
> implies lower bound. Add missing clock constraint so the list will have
> exact number of items (clocks).
>
> Fixes: 2295bbd35edb ("dt-bindings: display: add Unisoc's mipi dsi controller bindings")
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> .../devicetree/bindings/display/sprd/sprd,sharkl3-dsi-host.yaml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] dt-bindings: display: sprd,sharkl3-dpu: Fix missing clocks constraints
2025-07-20 12:30 [PATCH 1/2] dt-bindings: display: sprd,sharkl3-dpu: Fix missing clocks constraints Krzysztof Kozlowski
2025-07-20 12:30 ` [PATCH 2/2] dt-bindings: display: sprd,sharkl3-dsi-host: " Krzysztof Kozlowski
@ 2025-07-23 4:14 ` Rob Herring (Arm)
1 sibling, 0 replies; 4+ messages in thread
From: Rob Herring (Arm) @ 2025-07-23 4:14 UTC (permalink / raw)
To: Krzysztof Kozlowski
Cc: Orson Zhai, David Airlie, Conor Dooley, dri-devel, Simona Vetter,
stable, Thomas Zimmermann, Maarten Lankhorst, Kevin Tang,
devicetree, Baolin Wang, Maxime Ripard, Krzysztof Kozlowski,
linux-kernel, Chunyan Zhang
On Sun, 20 Jul 2025 14:30:04 +0200, Krzysztof Kozlowski wrote:
> 'minItems' alone does not impose upper bound, unlike 'maxItems' which
> implies lower bound. Add missing clock constraint so the list will have
> exact number of items (clocks).
>
> Fixes: 8cae15c60cf0 ("dt-bindings: display: add Unisoc's dpu bindings")
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> .../devicetree/bindings/display/sprd/sprd,sharkl3-dpu.yaml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-07-23 4:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-20 12:30 [PATCH 1/2] dt-bindings: display: sprd,sharkl3-dpu: Fix missing clocks constraints Krzysztof Kozlowski
2025-07-20 12:30 ` [PATCH 2/2] dt-bindings: display: sprd,sharkl3-dsi-host: " Krzysztof Kozlowski
2025-07-23 4:14 ` Rob Herring (Arm)
2025-07-23 4:14 ` [PATCH 1/2] dt-bindings: display: sprd,sharkl3-dpu: " Rob Herring (Arm)
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).