Skip to content

Commit

Permalink
arm64: dts: lx2160a: Update can node property
Browse files Browse the repository at this point in the history
fsl,clk-source property is of type uint8 and need to be defined as
"/bits/ 8 <0>". Simply setting value to 0 raise warning:
can@2180000: fsl,clk-source:0: [0, 0, 0, 0] is too long

Signed-off-by: Kuldeep Singh <singh.kuldeep87k@gmail.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
  • Loading branch information
Kuldeep Singh authored and Shawn Guo committed Apr 11, 2022
1 parent 73d901d commit 7cbeeb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm64/boot/dts/freescale/fsl-lx2160a.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@
QORIQ_CLK_PLL_DIV(8)>,
<&clockgen QORIQ_CLK_SYSCLK 0>;
clock-names = "ipg", "per";
fsl,clk-source = <0>;
fsl,clk-source = /bits/ 8 <0>;
status = "disabled";
};

Expand All @@ -921,7 +921,7 @@
QORIQ_CLK_PLL_DIV(8)>,
<&clockgen QORIQ_CLK_SYSCLK 0>;
clock-names = "ipg", "per";
fsl,clk-source = <0>;
fsl,clk-source = /bits/ 8 <0>;
status = "disabled";
};

Expand Down

0 comments on commit 7cbeeb0

Please sign in to comment.