Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

arm64: zynqmp: add clock-output-names property in clock nodes

Add clock-output-names property to clock nodes, so that the resulting
clock name do not change when clock node name is changed.
Also, replace underscores with hyphens in the clock node names as per
dt-schema rule.

Signed-off-by: Naman Trivedi <naman.trivedimanojbhai@amd.com>
Acked-by: Senthil Nathan Thangaraj <senthilnathan.thangaraj@amd.com>
Link: https://lore.kernel.org/r/20241122095712.1166883-1-naman.trivedimanojbhai@amd.com
Signed-off-by: Michal Simek <michal.simek@amd.com>

authored by

Naman Trivedi and committed by
Michal Simek
385a59e7 2014c95a

+10 -5
+10 -5
arch/arm64/boot/dts/xilinx/zynqmp-clk-ccf.dtsi
··· 10 10 11 11 #include <dt-bindings/clock/xlnx-zynqmp-clk.h> 12 12 / { 13 - pss_ref_clk: pss_ref_clk { 13 + pss_ref_clk: pss-ref-clk { 14 14 bootph-all; 15 15 compatible = "fixed-clock"; 16 16 #clock-cells = <0>; 17 17 clock-frequency = <33333333>; 18 + clock-output-names = "pss_ref_clk"; 18 19 }; 19 20 20 - video_clk: video_clk { 21 + video_clk: video-clk { 21 22 bootph-all; 22 23 compatible = "fixed-clock"; 23 24 #clock-cells = <0>; 24 25 clock-frequency = <27000000>; 26 + clock-output-names = "video_clk"; 25 27 }; 26 28 27 - pss_alt_ref_clk: pss_alt_ref_clk { 29 + pss_alt_ref_clk: pss-alt-ref-clk { 28 30 bootph-all; 29 31 compatible = "fixed-clock"; 30 32 #clock-cells = <0>; 31 33 clock-frequency = <0>; 34 + clock-output-names = "pss_alt_ref_clk"; 32 35 }; 33 36 34 - gt_crx_ref_clk: gt_crx_ref_clk { 37 + gt_crx_ref_clk: gt-crx-ref-clk { 35 38 bootph-all; 36 39 compatible = "fixed-clock"; 37 40 #clock-cells = <0>; 38 41 clock-frequency = <108000000>; 42 + clock-output-names = "gt_crx_ref_clk"; 39 43 }; 40 44 41 - aux_ref_clk: aux_ref_clk { 45 + aux_ref_clk: aux-ref-clk { 42 46 bootph-all; 43 47 compatible = "fixed-clock"; 44 48 #clock-cells = <0>; 45 49 clock-frequency = <27000000>; 50 + clock-output-names = "aux_ref_clk"; 46 51 }; 47 52 }; 48 53