diff options
author | Lukasz Majewski <lukma@denx.de> | 2018-08-01 14:48:57 +0200 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2018-08-06 10:53:53 +0900 |
commit | a61a4a1db009e3e600258551a01b54c4f50ec103 (patch) | |
tree | 17a8032a2350e98fb9b4ed5162049e7d4129c37d | |
parent | 30373ef0a1e15415451bf2e0c5cb9bf796023fe1 (diff) |
ARM: Odroid XU3: Adjust BOOT_TARGET_DEVICES to allow booting from SD card (mmc2)
This change is necessary to allow booting the Odroid XU3 from SD card
after enabling the DM_MMC support.
After this change the SD card mmc IP block is correctly enumerated as mmc2
(and not as mmc1 as in the legacy code).
Signed-off-by: Lukasz Majewski <lukma@denx.de>
Tested-by: Anand Moon <linux.amoon@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
-rw-r--r-- | include/configs/exynos5-common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/configs/exynos5-common.h b/include/configs/exynos5-common.h index a7621fc701..cd2a9046af 100644 --- a/include/configs/exynos5-common.h +++ b/include/configs/exynos5-common.h @@ -138,6 +138,7 @@ #define BOOT_TARGET_DEVICES(func) \ func(MMC, mmc, 1) \ func(MMC, mmc, 0) \ + func(MMC, mmc, 2) \ func(PXE, pxe, na) \ func(DHCP, dhcp, na) |