From 7bca79558de6444a929cbd72dc519aa9e88c15b8 Mon Sep 17 00:00:00 2001 From: Rick Chen Date: Tue, 15 Jan 2019 13:30:35 +0800 Subject: [PATCH] nds32: dts: Fix mmc node compatible string In the two commits: 7f3aed7c0f5fc966b0d1a1ae02acd9e5bc3cf84d mmc: ftsdc010_mci: Sync compatible with DT mmc node 8da96f5f08a930a1cefc45c848f72f10c3936f4e riscv: dts: Sync DT with Linux Kernel ftsdc010_mci's compatible has been modified as "andestech,atfsdc010" for RISC-V synchronization. But ae3xx.dts and ag101p.dts which are used for nds32 adp-ae3xx and adp-ag101p platforms did not be modified correctly at that time. It will cause mmc detection failure. Fix it here. Signed-off-by: Rick Chen Cc: Greentime Hu --- arch/nds32/dts/ae3xx.dts | 2 +- arch/nds32/dts/ag101p.dts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/nds32/dts/ae3xx.dts b/arch/nds32/dts/ae3xx.dts index b19ba988db..272eb3359a 100644 --- a/arch/nds32/dts/ae3xx.dts +++ b/arch/nds32/dts/ae3xx.dts @@ -70,7 +70,7 @@ }; mmc0: mmc@f0e00000 { - compatible = "andestech,atsdc010"; + compatible = "andestech,atfsdc010"; max-frequency = <100000000>; fifo-depth = <0x10>; reg = <0xf0e00000 0x1000>; diff --git a/arch/nds32/dts/ag101p.dts b/arch/nds32/dts/ag101p.dts index 7832efb12f..d2ed9efe93 100644 --- a/arch/nds32/dts/ag101p.dts +++ b/arch/nds32/dts/ag101p.dts @@ -62,7 +62,7 @@ }; mmc0: mmc@98e00000 { - compatible = "andestech,atsdc010"; + compatible = "andestech,atfsdc010"; max-frequency = <30000000>; fifo-depth = <0x10>; reg = <0x98e00000 0x1000>; -- 2.39.5