summaryrefslogtreecommitdiff
path: root/include/configs
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-08-12 16:33:39 +0300
committerTom Rini <trini@konsulko.com>2021-08-12 16:33:39 +0300
commit07043055280a91d769ffe5e30d214241bd2e9e78 (patch)
tree2f0c0204ad381de5cb8a2e4a58c08402ee4dc164 /include/configs
parenta25277122dad99837b78cd3b3ae6b8214df88c26 (diff)
parent60df49d22d2586f50bba11eaa59a55f2baa4671f (diff)
downloadu-boot-07043055280a91d769ffe5e30d214241bd2e9e78.tar.xz
Merge tag 'u-boot-rockchip-20210812' of https://source.denx.de/u-boot/custodians/u-boot-rockchip
- Add Rockchip SFC driver support; - DTS sync from kernel; - emmc hs400 support for rk3399; - Fix for spinore bootdevice and MMC boot order;
Diffstat (limited to 'include/configs')
-rw-r--r--include/configs/rockchip-common.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h
index 0b9e24d1db..ba7061a287 100644
--- a/include/configs/rockchip-common.h
+++ b/include/configs/rockchip-common.h
@@ -14,11 +14,11 @@
#ifndef CONFIG_SPL_BUILD
-/* First try to boot from SD (index 0), then eMMC (index 1) */
+/* First try to boot from SD (index 1), then eMMC (index 0) */
#if CONFIG_IS_ENABLED(CMD_MMC)
#define BOOT_TARGET_MMC(func) \
- func(MMC, mmc, 0) \
- func(MMC, mmc, 1)
+ func(MMC, mmc, 1) \
+ func(MMC, mmc, 0)
#else
#define BOOT_TARGET_MMC(func)
#endif