diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2020-09-06 17:21:44 +0300 |
---|---|---|
committer | Krzysztof Kozlowski <krzk@kernel.org> | 2020-09-11 17:52:24 +0300 |
commit | f9e8785da5a6fb1da11e7233d8720254ef1995a5 (patch) | |
tree | 6f4377f6ca4557f4e55bb9975fd4aa2f7b924a5d /arch/arm/boot/dts/exynos3250-artik5.dtsi | |
parent | 30b904632eae15c9685552e1e2e2cbe04e6318e9 (diff) | |
download | linux-f9e8785da5a6fb1da11e7233d8720254ef1995a5.tar.xz |
ARM: dts: exynos: add input clock to CMU in Exynos3250
Commit 52005dece527 ("ARM: dts: Add assigned clock parents to CMU node
for exynos3250") added assigned clocks under Clock Management Unit to
fix hangs when accessing ISP registers.
However the dtschema expects "clocks" property if "assigned-clocks" are
used. Add reference to input clock to silence the dtschema warnings:
arch/arm/boot/dts/exynos3250-artik5-eval.dt.yaml: clock-controller@10030000: 'clocks' is a dependency of 'assigned-clocks'
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20200906142146.21266-1-krzk@kernel.org
Diffstat (limited to 'arch/arm/boot/dts/exynos3250-artik5.dtsi')
-rw-r--r-- | arch/arm/boot/dts/exynos3250-artik5.dtsi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/exynos3250-artik5.dtsi b/arch/arm/boot/dts/exynos3250-artik5.dtsi index 6c2f320be2f4..12887b3924af 100644 --- a/arch/arm/boot/dts/exynos3250-artik5.dtsi +++ b/arch/arm/boot/dts/exynos3250-artik5.dtsi @@ -55,6 +55,10 @@ assigned-clock-rates = <6000000>; }; +&cmu { + clocks = <&xusbxti>; +}; + &cpu0 { cpu0-supply = <&buck2_reg>; }; |