summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Walle <[email protected]>2020-12-20 22:35:13 +0100
committerTom Rini <[email protected]>2020-12-20 16:53:25 -0500
commite668bec96a5f8d9f6c1619038e8147816f040192 (patch)
treecf90987a316b307665028a9650de59a19dfef865 /include
parent46a4d752034646b7c10178988c08b85c08b44bf6 (diff)
board: kontron: sl28: reorder mmc devices
Since linux commit 2e6cde96873253fd9eb0f20afd8ffd18278cff75 ("arm64: dts: ls1028a: make the eMMC and SD card controllers use fixed indices") mmc0 is the eMMC and mmc1 is the SD card. Also swap it in u-boot to avoid any confusion by the user and to be aligned with linux. Signed-off-by: Michael Walle <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/configs/kontron_sl28.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/kontron_sl28.h b/include/configs/kontron_sl28.h
index afe512a8c7b..442fb58b979 100644
--- a/include/configs/kontron_sl28.h
+++ b/include/configs/kontron_sl28.h
@@ -89,8 +89,8 @@
"ramdisk_addr_r=0x88080000\0"
#define BOOT_TARGET_DEVICES(func) \
- func(MMC, mmc, 1) \
func(MMC, mmc, 0) \
+ func(MMC, mmc, 1) \
func(NVME, nvme, 0) \
func(USB, usb, 0) \
func(DHCP, dhcp, 0) \