mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
57 lines
1.9 KiB
Diff
57 lines
1.9 KiB
Diff
From 3ef7c2558f31745588473b75a655894b37e62116 Mon Sep 17 00:00:00 2001
|
|
From: Johan Jonker <jbx6244@gmail.com>
|
|
Date: Wed, 15 Jan 2020 19:52:44 +0100
|
|
Subject: arm64: dts: rockchip: rename dwmmc node names to mmc
|
|
|
|
Current dts files with 'dwmmc' nodes are manually verified.
|
|
In order to automate this process rockchip-dw-mshc.txt
|
|
has to be converted to yaml. In the new setup
|
|
rockchip-dw-mshc.yaml will inherit properties from
|
|
mmc-controller.yaml and synopsys-dw-mshc-common.yaml.
|
|
'dwmmc' will no longer be a valid name for a node,
|
|
so change them all to 'mmc'
|
|
|
|
Signed-off-by: Johan Jonker <jbx6244@gmail.com>
|
|
Link: https://lore.kernel.org/r/20200115185244.18149-2-jbx6244@gmail.com
|
|
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
|
|
---
|
|
arch/arm64/boot/dts/rockchip/rk3328.dtsi | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
(limited to 'arch/arm64/boot/dts/rockchip/rk3328.dtsi')
|
|
|
|
diff --git a/arch/arm64/boot/dts/rockchip/rk3328.dtsi b/arch/arm64/boot/dts/rockchip/rk3328.dtsi
|
|
index c9ff1188bd7b..1f53ead52c7f 100644
|
|
--- a/arch/arm64/boot/dts/rockchip/rk3328.dtsi
|
|
+++ b/arch/arm64/boot/dts/rockchip/rk3328.dtsi
|
|
@@ -822,7 +822,7 @@
|
|
};
|
|
};
|
|
|
|
- sdmmc: dwmmc@ff500000 {
|
|
+ sdmmc: mmc@ff500000 {
|
|
compatible = "rockchip,rk3328-dw-mshc", "rockchip,rk3288-dw-mshc";
|
|
reg = <0x0 0xff500000 0x0 0x4000>;
|
|
interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>;
|
|
@@ -836,7 +836,7 @@
|
|
status = "disabled";
|
|
};
|
|
|
|
- sdio: dwmmc@ff510000 {
|
|
+ sdio: mmc@ff510000 {
|
|
compatible = "rockchip,rk3328-dw-mshc", "rockchip,rk3288-dw-mshc";
|
|
reg = <0x0 0xff510000 0x0 0x4000>;
|
|
interrupts = <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>;
|
|
@@ -850,7 +850,7 @@
|
|
status = "disabled";
|
|
};
|
|
|
|
- emmc: dwmmc@ff520000 {
|
|
+ emmc: mmc@ff520000 {
|
|
compatible = "rockchip,rk3328-dw-mshc", "rockchip,rk3288-dw-mshc";
|
|
reg = <0x0 0xff520000 0x0 0x4000>;
|
|
interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;
|
|
--
|
|
cgit 1.2-0.3.lf.el7
|
|
|