From c3ae759f4b6276cbf2730042ff5b19fea783140e Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Wed, 27 Sep 2017 16:07:04 +0900 Subject: [PATCH] configs: tizen_tm1: fix the duplicated defined config Some configurations are defined the twice. If configuration is not defined, it needs to define at that time. Change-Id: I8ee34f434fd3e532e610eadb16e6a36954615ee9 Signed-off-by: Jaehoon Chung --- include/configs/tizen_tm1.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/configs/tizen_tm1.h b/include/configs/tizen_tm1.h index c815126..81be832 100644 --- a/include/configs/tizen_tm1.h +++ b/include/configs/tizen_tm1.h @@ -125,7 +125,9 @@ #ifdef CONFIG_CMD_MMC #define CONFIG_CMD_FAT 1 #define CONFIG_FAT_WRITE 1 +#ifndef CONFIG_MMC #define CONFIG_MMC 1 +#endif /* !CONFIG_MMC */ #define CONFIG_GENERIC_MMC 1 #define CONFIG_SDHCI 1 #define CONFIG_SDHCI_CTRL_NO_HISPD 1 /* disable high speed control */ @@ -133,7 +135,9 @@ #define CONFIG_MMC_SDMA 1 #define CONFIG_MV_SDHCI 1 #define CONFIG_DOS_PARTITION 1 +#ifndef CONFIG_EFI_PARTITION #define CONFIG_EFI_PARTITION 1 +#endif /* !CONFIG_EFI_PARTITION */ #define CONFIG_SYS_MMC_NUM 1 #define CONFIG_SYS_MMC_BASE {0x20600000} #define CONFIG_SYS_SD_BASE 0x20300000 -- 2.34.1