diff options
author | Johan Jonker <jbx6244@gmail.com> | 2022-03-29 17:07:40 +0200 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2022-04-10 19:05:48 +0200 |
commit | 7adc1b98bb6e6611bc9122de77737b193b693122 (patch) | |
tree | 6ece1eb5f1e46cb8827ad3cdd31681774860c885 /Documentation | |
parent | dt-bindings: clock: use generic node name for pmucru example in rockchip,rk33... (diff) | |
download | linux-7adc1b98bb6e6611bc9122de77737b193b693122.tar.xz linux-7adc1b98bb6e6611bc9122de77737b193b693122.zip |
dt-bindings: clock: fix rk3399 cru clock issues
The current rk3399 cru DT node gives warnings like:
'clocks' is a dependency of 'assigned-clocks'.
With the YAML conversion somehow "assigned-xxx" properties where added.
If a proper clock is added to the cru node these properties are no longer
needed, so removed them. Currently only one clock will be added, so limit
the clock maxItems to 1. Add a clock name to be able to differentiate
and filter bogus entries.
Signed-off-by: Johan Jonker <jbx6244@gmail.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220329150742.22093-4-jbx6244@gmail.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.yaml | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.yaml b/Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.yaml index 18a0093115a1..54da1e31ea73 100644 --- a/Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.yaml +++ b/Documentation/devicetree/bindings/clock/rockchip,rk3399-cru.yaml @@ -46,19 +46,10 @@ properties: const: 1 clocks: - minItems: 1 - - assigned-clocks: - minItems: 1 - maxItems: 64 - - assigned-clock-parents: - minItems: 1 - maxItems: 64 + maxItems: 1 - assigned-clock-rates: - minItems: 1 - maxItems: 64 + clock-names: + const: xin24m rockchip,grf: $ref: /schemas/types.yaml#/definitions/phandle |