diff options
author | Marcel Ziswiler <marcel@ziswiler.com> | 2019-05-20 02:44:56 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-06-30 11:12:28 -0400 |
commit | f992af81e9530918d58d5c7c09fabe93d03d0ac2 (patch) | |
tree | 34019995334551f19013296f68c8da50fac73dcd /Makefile | |
parent | 4d3053a347c42276d8e8fe47d71f535a6e25af76 (diff) | |
download | u-boot-f992af81e9530918d58d5c7c09fabe93d03d0ac2.zip u-boot-f992af81e9530918d58d5c7c09fabe93d03d0ac2.tar.gz u-boot-f992af81e9530918d58d5c7c09fabe93d03d0ac2.tar.bz2 |
Makefile: allow dm_mmc without of_control
Allow for CONFIG_DM_MMC with platform data rather than
CONFIG_OF_CONTROL.
Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1025,7 +1025,7 @@ ifneq ($(CONFIG_DM),y) @echo >&2 "====================================================" endif ifeq ($(CONFIG_MMC),y) -ifneq ($(CONFIG_DM_MMC)$(CONFIG_OF_CONTROL)$(CONFIG_BLK),yyy) +ifneq ($(CONFIG_DM_MMC)$(CONFIG_BLK),yy) @echo >&2 "===================== WARNING ======================" @echo >&2 "This board does not use CONFIG_DM_MMC. Please update" @echo >&2 "the board to use CONFIG_DM_MMC before the v2019.04 release." |