From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jaehoon Chung Date: Thu, 01 Oct 2015 12:37:22 +0900 Subject: [U-Boot] [PATCH V3 4/4] trats: fdt: disable unused DW MMC In-Reply-To: <1443611693-23722-5-git-send-email-p.marczak@samsung.com> References: <1443442624-7056-1-git-send-email-p.marczak@samsung.com> <1443611693-23722-1-git-send-email-p.marczak@samsung.com> <1443611693-23722-5-git-send-email-p.marczak@samsung.com> Message-ID: <560CAA72.9020208@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi, Przemyslaw. On 09/30/2015 08:14 PM, Przemyslaw Marczak wrote: > This device uses SDHCI driver, for eMMC and SD cards. > Trying bind the DW MMC driver with fdt node without all > required properties, causes printing an error. > > This commit disables the DW MMC node. Why does it need? Trats board doesn't support the Designware IP, so i think right that it shouldn't build. If needs to modify, exynos-common.h should be modified. > > Tested-on: Trats > > Signed-off-by: Przemyslaw Marczak > Cc: ?ukasz Majewski > Cc: Minkyu Kang > -- > Changes V3: > - new commit > --- > arch/arm/dts/exynos4210-trats.dts | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/arch/arm/dts/exynos4210-trats.dts b/arch/arm/dts/exynos4210-trats.dts > index 36d02df..f3fac80 100644 > --- a/arch/arm/dts/exynos4210-trats.dts > +++ b/arch/arm/dts/exynos4210-trats.dts > @@ -117,4 +117,8 @@ > sdhci at 12540000 { > status = "disabled"; > }; > + > + dwmmc at 12550000 { > + status = "disabled"; > + }; It seems to support dwmmc controller. 12550000 addr is for sdhci controller. Best Regards, Jaehoon Chung > }; >