]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
ARM: dts: microchip: sama7d65: Add clock name property
authorRyan Wanner <Ryan.Wanner@microchip.com>
Tue, 17 Jun 2025 16:08:41 +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: 261dcfad1b59 ("ARM: dts: microchip: add sama7d65 SoC DT")
Signed-off-by: Ryan Wanner <Ryan.Wanner@microchip.com>
Link: https://lore.kernel.org/r/3878ae6d0016d46f0c91bd379146d575d5d336aa.1750175453.git.Ryan.Wanner@microchip.com
Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
arch/arm/boot/dts/microchip/sama7d65.dtsi

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