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

ARM: dts: microchip: sam9x7: Add clock name property

Add clock-output-names to the xtal nodes, so the driver can correctly
register the main and slow xtal.

This fixes the issue of the SoC clock driver not being able to find
the main xtal and slow xtal correctly causing a bad clock tree.

Fixes: 41af45af8bc3 ("ARM: dts: at91: sam9x7: add device tree for SoC")
Signed-off-by: Ryan Wanner <Ryan.Wanner@microchip.com>
Link: https://lore.kernel.org/r/036518968ac657b93e315bb550b822b59ae6f17c.1750175453.git.Ryan.Wanner@microchip.com
Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>

authored by

Ryan Wanner and committed by
Claudiu Beznea
2e247234 00294681

+2
+2
arch/arm/boot/dts/microchip/sam9x7.dtsi
··· 45 45 clocks { 46 46 slow_xtal: clock-slowxtal { 47 47 compatible = "fixed-clock"; 48 + clock-output-names = "slow_xtal"; 48 49 #clock-cells = <0>; 49 50 }; 50 51 51 52 main_xtal: clock-mainxtal { 52 53 compatible = "fixed-clock"; 54 + clock-output-names = "main_xtal"; 53 55 #clock-cells = <0>; 54 56 }; 55 57 };