diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-05-09 11:31:40 (GMT) |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2017-05-15 09:28:23 (GMT) |
commit | 792f0054a445b8653e028415dd28fef925be6a9a (patch) | |
tree | e951c2cdc71a15f08c73625821152a38c3eff165 /common/spl/Kconfig | |
parent | 4aa2ba3a34e3e4413c2cc63fc54f3176881b1a56 (diff) | |
download | u-boot-fsl-qoriq-792f0054a445b8653e028415dd28fef925be6a9a.tar.xz |
mmc: descend into drivers/mmc only when CONFIG_MMC is enabled
This simplifies makefiles. Also, arrange the order of objects in
drivers/mmc/Makefile so that the framework objects are listed before
drivers.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r-- | common/spl/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 0d56f10..e82a879 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -729,7 +729,7 @@ config TPL_MPC8XXX_INIT_DDR_SUPPORT config TPL_MMC_SUPPORT bool "Support MMC" - depends on TPL + depends on TPL && MMC help Enable support for MMC within TPL. See SPL_MMC_SUPPORT for details. |