diff options
author | Johan Jonker <jbx6244@gmail.com> | 2022-03-29 13:13:23 +0200 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2022-05-27 19:27:00 +0200 |
commit | 25f417b56384a3a3f65b7c7439a9797966b926e9 (patch) | |
tree | c5d139a84f44fb70c0c098599aefeec783304297 /arch/arm/boot/dts | |
parent | 9d66847be3f8290e3142184af0b1806aae6269e2 (diff) | |
download | linux-stable-25f417b56384a3a3f65b7c7439a9797966b926e9.tar.gz linux-stable-25f417b56384a3a3f65b7c7439a9797966b926e9.tar.bz2 linux-stable-25f417b56384a3a3f65b7c7439a9797966b926e9.zip |
ARM: dts: rockchip: add clocks property to cru node rk3066a/rk3188
Add clocks property to rk3066a/rk3188 cru node to fix warnings like:
'clocks' is a dependency of 'assigned-clocks'
Signed-off-by: Johan Jonker <jbx6244@gmail.com>
Link: https://lore.kernel.org/r/20220329111323.3569-2-jbx6244@gmail.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'arch/arm/boot/dts')
-rw-r--r-- | arch/arm/boot/dts/rk3066a.dtsi | 3 | ||||
-rw-r--r-- | arch/arm/boot/dts/rk3188.dtsi | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/rk3066a.dtsi b/arch/arm/boot/dts/rk3066a.dtsi index c25b9695db4b..de9915d946f7 100644 --- a/arch/arm/boot/dts/rk3066a.dtsi +++ b/arch/arm/boot/dts/rk3066a.dtsi @@ -202,8 +202,9 @@ cru: clock-controller@20000000 { compatible = "rockchip,rk3066a-cru"; reg = <0x20000000 0x1000>; + clocks = <&xin24m>; + clock-names = "xin24m"; rockchip,grf = <&grf>; - #clock-cells = <1>; #reset-cells = <1>; assigned-clocks = <&cru PLL_CPLL>, <&cru PLL_GPLL>, diff --git a/arch/arm/boot/dts/rk3188.dtsi b/arch/arm/boot/dts/rk3188.dtsi index a94321e90014..cdd4a0bd5133 100644 --- a/arch/arm/boot/dts/rk3188.dtsi +++ b/arch/arm/boot/dts/rk3188.dtsi @@ -195,8 +195,9 @@ cru: clock-controller@20000000 { compatible = "rockchip,rk3188-cru"; reg = <0x20000000 0x1000>; + clocks = <&xin24m>; + clock-names = "xin24m"; rockchip,grf = <&grf>; - #clock-cells = <1>; #reset-cells = <1>; }; |