Message ID | 20200429143002.5050-3-t-kristo@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ARM: omap4/5: crypto support fixes | expand |
diff --git a/arch/arm/boot/dts/omap54xx-clocks.dtsi b/arch/arm/boot/dts/omap54xx-clocks.dtsi index 42f2c447727d..746048813a12 100644 --- a/arch/arm/boot/dts/omap54xx-clocks.dtsi +++ b/arch/arm/boot/dts/omap54xx-clocks.dtsi @@ -1125,13 +1125,13 @@ #size-cells = <1>; ranges = <0 0x1000 0x200>; - l4per_clkctrl: clock@20 { + l4per_clkctrl: clk@20 { compatible = "ti,clkctrl-l4per", "ti,clkctrl"; reg = <0x20 0x15c>; #clock-cells = <2>; }; - l4sec_clkctrl: clock@1a0 { + l4sec_clkctrl: clk@1a0 { compatible = "ti,clkctrl-l4sec", "ti,clkctrl"; reg = <0x1a0 0x3c>; #clock-cells = <2>;
The node name for these should be clk instead of clock. Otherwise the clock driver won't be able to map the parent/child relationships properly, and large number of clocks end up in orphaned state. Signed-off-by: Tero Kristo <t-kristo@ti.com> --- arch/arm/boot/dts/omap54xx-clocks.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)