summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGuillaume GARDET <[email protected]>2019-07-24 09:10:13 +0200
committerMinkyu Kang <[email protected]>2019-09-05 18:36:59 +0900
commitd7441d8a9ac9602afa92bf2649890a2208ffada1 (patch)
tree10d1c14a9102e80511ac6aa5c135344a1bc81d5a /include
parent448f11f7503995746a7b71e5e3b3a831c4651be9 (diff)
ARM: exynos5: Try to boot on mmc2 before mmc0/1
As stated in commit a61a4a1db009e3e600258551a01b54c4f50ec103 with DM_MMC, exynos boards now enumarates external SD/MMC slot as mmc2, instead of mmc1 with legacy mode. Moving mmc2 before mmc1/0 restore the previous behavior of trying external SD/MMC before internal slot. Signed-off-by: Guillaume GARDET <[email protected]> Cc: Lukasz Majewski <[email protected]> Cc: Anand Moon <[email protected]> Cc: Simon Glass <[email protected]> Cc: Minkyu Kang <[email protected]> Reviewed-by: Oleksandr Suvorov <[email protected]> Signed-off-by: Minkyu Kang <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/exynos5-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/exynos5-common.h b/include/configs/exynos5-common.h
index 397bbf6d9d3..e0a4d76d538 100644
--- a/include/configs/exynos5-common.h
+++ b/include/configs/exynos5-common.h
@@ -128,9 +128,9 @@
#define EXYNOS_IRAM_SECONDARY_BASE 0x02020018
#define BOOT_TARGET_DEVICES(func) \
+ func(MMC, mmc, 2) \
func(MMC, mmc, 1) \
func(MMC, mmc, 0) \
- func(MMC, mmc, 2) \
func(PXE, pxe, na) \
func(DHCP, dhcp, na)