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

ARM: dts: dra76x: m_can: fix order of clocks

According to the bosch,m_can.yaml bindings the first clock shall be the "hclk",
while the second clock "cclk".

This patch fixes the order accordingly.

Fixes: 0adbe832f21a ("ARM: dts: dra76x: Add MCAN node")
Cc: Faiz Abbas <faiz_abbas@ti.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: linux-omap@vger.kernel.org
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Tony Lindgren <tony@atomide.com>

authored by

Marc Kleine-Budde and committed by
Tony Lindgren
05d5de6b 65fb7367

+2 -2
+2 -2
arch/arm/boot/dts/dra76x.dtsi
··· 32 32 interrupts = <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>, 33 33 <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>; 34 34 interrupt-names = "int0", "int1"; 35 - clocks = <&mcan_clk>, <&l3_iclk_div>; 36 - clock-names = "cclk", "hclk"; 35 + clocks = <&l3_iclk_div>, <&mcan_clk>; 36 + clock-names = "hclk", "cclk"; 37 37 bosch,mram-cfg = <0x0 0 0 32 0 0 1 1>; 38 38 }; 39 39 };