From: Lukasz Majewski Date: Wed, 1 Aug 2018 12:48:57 +0000 (+0200) Subject: ARM: Odroid XU3: Adjust BOOT_TARGET_DEVICES to allow booting from SD card (mmc2) X-Git-Tag: v2018.09-rc2~63^2~6 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a61a4a1db009e3e600258551a01b54c4f50ec103;p=oweals%2Fu-boot.git 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 Tested-by: Anand Moon Reviewed-by: Simon Glass Signed-off-by: Minkyu Kang --- 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)