From e412bb821cac45fb0801548d8d2d6f0c1bc51cf0 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 53c607e..adaa693 100644 --- a/include/configs/odroid_xu3.h +++ b/include/configs/odroid_xu3.h @@ -33,6 +33,9 @@ #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0" +/* SD/MMC configuration */ +#define CONFIG_MMC_DEFAULT_DEV 0 + /* USB */ #define CONFIG_USB_EHCI_EXYNOS -- 2.7.4