diff options
| author | Przemyslaw Marczak <[email protected]> | 2015-09-30 13:14:53 +0200 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2015-10-03 14:39:19 +0100 |
| commit | cce573e8d806fd430e7584b36bce6d62ae0430e8 (patch) | |
| tree | 20045cdc65928253404a0280d7f22b8ea38ce466 | |
| parent | 7241df1c39ffe46cacc6b7ca6b9a669faa0db2b0 (diff) | |
trats: fdt: disable unused DW MMC
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.
Tested-on: Trats
Signed-off-by: Przemyslaw Marczak <[email protected]>
Cc: Ćukasz Majewski <[email protected]>
Cc: Minkyu Kang <[email protected]>
| -rw-r--r-- | arch/arm/dts/exynos4210-trats.dts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/dts/exynos4210-trats.dts b/arch/arm/dts/exynos4210-trats.dts index 36d02df3b07..f3fac801905 100644 --- a/arch/arm/dts/exynos4210-trats.dts +++ b/arch/arm/dts/exynos4210-trats.dts @@ -117,4 +117,8 @@ sdhci@12540000 { status = "disabled"; }; + + dwmmc@12550000 { + status = "disabled"; + }; }; |
