]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
ARM: dts: microchip: sam9x7: Add clock name property
authorRyan Wanner <Ryan.Wanner@microchip.com>
Tue, 17 Jun 2025 16:08:42 +0000 (09:08 -0700)
committerClaudiu Beznea <claudiu.beznea@tuxon.dev>
Sun, 22 Jun 2025 13:58:15 +0000 (16:58 +0300)
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>
arch/arm/boot/dts/microchip/sam9x7.dtsi

index 2c8ab223fdf68ff04c13e68484935e71f0d8a203..2063507d0c50f30e16b44f86d4fd41ac0f7ed1c1 100644 (file)
        clocks {
                slow_xtal: clock-slowxtal {
                        compatible = "fixed-clock";
+                       clock-output-names = "slow_xtal";
                        #clock-cells = <0>;
                };
 
                main_xtal: clock-mainxtal {
                        compatible = "fixed-clock";
+                       clock-output-names = "main_xtal";
                        #clock-cells = <0>;
                };
        };