]> git.ipfire.org Git - thirdparty/kernel/stable.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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 15 Aug 2025 14:38:27 +0000 (16:38 +0200)
[ Upstream commit 2e24723492b28ffdccb0e3e68725673e299e3823 ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm/boot/dts/microchip/sam9x7.dtsi

index b217a908f525349833d78ce809941b9419e6b03c..114449e90720657ebea2b5d0302c2d477ac2bbbe 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>;
                };
        };