From 7fd43c18e8fc4905ef268345f296136f621ce224 Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Tue, 17 Oct 2017 19:12:15 +0900 Subject: [PATCH] configs: odroid_xu3: add missing CONFIG_MMC_DEFAULT_DEV For dfu/thordown command, default mmc device number should be set as CONFIG_MMC_DEFAULT_DEV. Add the missing CONFIG_MMC_DEFAULT_DEV. Note: before this patch, CONFIG_MMC_DEFAULT_DEV string itself is used for parsing mmc device number and anyway it was parsed as 0. Change-Id: I233c59f810acf37ace57abed99f30c1897595d2b Signed-off-by: Seung-Woo Kim --- include/configs/odroid_xu3.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/odroid_xu3.h b/include/configs/odroid_xu3.h index 8063b6c79d..899e3efed7 100644 --- a/include/configs/odroid_xu3.h +++ b/include/configs/odroid_xu3.h @@ -41,6 +41,9 @@ #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0" +/* SD/MMC configuration */ +#define CONFIG_MMC_DEFAULT_DEV 0 + /* USB */ #define CONFIG_USB_EHCI #define CONFIG_USB_EHCI_EXYNOS -- 2.34.1