From: Christian Marangi Date: Fri, 2 Aug 2024 13:53:05 +0000 (+0200) Subject: clk: mediatek: mt7981: fix wrong clock definition for spi2 X-Git-Url: http://git.dujemihanovic.xyz/%22/img/sics.gif/%22/static/git-favicon.png?a=commitdiff_plain;h=99bd00a97cd3d386b77736cd593f8c0dc5cb40f1;p=u-boot.git clk: mediatek: mt7981: fix wrong clock definition for spi2 Fix wrong clock definition for spi2 node as they reference spi0 clock instead of spi2. Signed-off-by: Christian Marangi --- diff --git a/arch/arm/dts/mt7981.dtsi b/arch/arm/dts/mt7981.dtsi index 1056667ba6..131adc00a5 100644 --- a/arch/arm/dts/mt7981.dtsi +++ b/arch/arm/dts/mt7981.dtsi @@ -286,10 +286,10 @@ spi2: spi@11009000 { compatible = "mediatek,ipm-spi"; reg = <0x11009000 0x100>; - clocks = <&infracfg_ao CK_INFRA_SPI0_CK>, + clocks = <&infracfg_ao CK_INFRA_SPI2_CK>, <&topckgen CK_TOP_SPI_SEL>; assigned-clocks = <&topckgen CK_TOP_SPI_SEL>, - <&infracfg CK_INFRA_SPI0_SEL>; + <&infracfg CK_INFRA_SPI2_SEL>; assigned-clock-parents = <&topckgen CK_TOP_CB_M_D2>, <&topckgen CK_INFRA_ISPI0>; clock-names = "sel-clk", "spi-clk";