Skip to content

Commit cd51991

Browse files
author
Dinh Nguyen
committed
arm64: dts: socfpga: agilex: fix dtbs_check warning for f2s-free-clk
The f2s-free-clk requires a clock-frequency value. We put in an arbitrary value of 100 MHz for a constant. The true clock frequency would get generated in an FPGA design and the bootloader will populated in actual hardware designs. This fixes warning like this: arch/arm64/boot/dts/intel:34:8 4 f2s-free-clk (fixed-clock): 'clock-frequency' is a required property Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
1 parent 19272b3 commit cd51991

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

arch/arm64/boot/dts/intel/socfpga_agilex.dtsi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
f2s_free_clk: f2s-free-clk {
127127
#clock-cells = <0>;
128128
compatible = "fixed-clock";
129+
clock-frequency = <100000000>;
129130
};
130131

131132
osc1: osc1 {

0 commit comments

Comments
 (0)