diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-05-09 20:31:40 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2017-05-15 18:28:23 +0900 |
commit | 792f0054a445b8653e028415dd28fef925be6a9a (patch) | |
tree | e951c2cdc71a15f08c73625821152a38c3eff165 /drivers/Makefile | |
parent | 4aa2ba3a34e3e4413c2cc63fc54f3176881b1a56 (diff) | |
download | u-boot-792f0054a445b8653e028415dd28fef925be6a9a.tar.gz |
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 'drivers/Makefile')
-rw-r--r-- | drivers/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index 691642023d..64c39d3a3e 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -76,6 +76,7 @@ obj-y += firmware/ obj-$(CONFIG_FPGA) += fpga/ obj-y += hwmon/ obj-y += misc/ +obj-$(CONFIG_MMC) += mmc/ obj-y += pcmcia/ obj-y += dfu/ obj-$(CONFIG_X86) += pch/ |