Skip to content

Commit b5ed7a5

Browse files
robimarkoandersson
authored andcommitted
ARM: dts: qcom: ipq4019: correct SDHCI XO clock
Using GCC_DCD_XO_CLK as the XO clock for SDHCI controller is not correct, it seems that I somehow made a mistake of passing it instead of the fixed XO clock. Fixes: 04b3b72 ("ARM: dts: qcom: ipq4019: Add SDHCI controller node") Signed-off-by: Robert Marko <[email protected]> Reviewed-by: Konrad Dybcio <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Bjorn Andersson <[email protected]>
1 parent 04601b9 commit b5ed7a5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

arch/arm/boot/dts/qcom/qcom-ipq4019.dtsi

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,12 @@
230230
interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
231231
interrupt-names = "hc_irq", "pwr_irq";
232232
bus-width = <8>;
233-
clocks = <&gcc GCC_SDCC1_AHB_CLK>, <&gcc GCC_SDCC1_APPS_CLK>,
234-
<&gcc GCC_DCD_XO_CLK>;
235-
clock-names = "iface", "core", "xo";
233+
clocks = <&gcc GCC_SDCC1_AHB_CLK>,
234+
<&gcc GCC_SDCC1_APPS_CLK>,
235+
<&xo>;
236+
clock-names = "iface",
237+
"core",
238+
"xo";
236239
status = "disabled";
237240
};
238241

0 commit comments

Comments
 (0)