| 12345678910111213141516171819202122232425262728293031323334 |
- From 2e9703ffe97a1c447c0d00c061526fbeeade6107 Mon Sep 17 00:00:00 2001
- From: Bhupesh Sharma <[email protected]>
- Date: Sun, 15 May 2022 03:24:19 +0530
- Subject: [PATCH] arm64: dts: qcom: Fix sdhci node names - use 'mmc@'
- Since the Qualcomm sdhci-msm device-tree binding has been converted
- to yaml format, 'make dtbs_check' reports issues with
- inconsistent 'sdhci@' convention used for specifying the
- sdhci nodes. The generic mmc bindings expect 'mmc@' format
- instead.
- Fix the same.
- Cc: Bjorn Andersson <[email protected]>
- Cc: Rob Herring <[email protected]>
- Signed-off-by: Bhupesh Sharma <[email protected]>
- [bjorn: Moved non-arm64 changes to separate commit]
- Signed-off-by: Bjorn Andersson <[email protected]>
- Link: https://lore.kernel.org/r/[email protected]
- ---
- arch/arm64/boot/dts/qcom/ipq8074.dtsi | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
- --- a/arch/arm64/boot/dts/qcom/ipq8074.dtsi
- +++ b/arch/arm64/boot/dts/qcom/ipq8074.dtsi
- @@ -375,7 +375,7 @@
- cell-index = <0>;
- };
-
- - sdhc_1: sdhci@7824900 {
- + sdhc_1: mmc@7824900 {
- compatible = "qcom,sdhci-msm-v4";
- reg = <0x7824900 0x500>, <0x7824000 0x800>;
- reg-names = "hc_mem", "core_mem";
|