diff options
author | Simon Glass <sjg@chromium.org> | 2016-10-01 14:43:19 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2016-10-11 10:17:03 -0600 |
commit | 252788b4eda852e0195e1903e55480b4bf4fea9d (patch) | |
tree | afd6e751f25a018f28d58559f0f1bc996eeb2e02 /drivers/mmc/Kconfig | |
parent | 896a74f615d6ffcbbcbec1505b19ed3280fe7873 (diff) | |
download | u-boot-252788b4eda852e0195e1903e55480b4bf4fea9d.zip u-boot-252788b4eda852e0195e1903e55480b4bf4fea9d.tar.gz u-boot-252788b4eda852e0195e1903e55480b4bf4fea9d.tar.bz2 |
dm: mmc: Enable DM_MMC_OPS by default with DM_MMC
These two options go together and it is best to do the conversion in one
step. So enable DM_MMC_OPS by default if DM_MMC is enabled.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/mmc/Kconfig')
-rw-r--r-- | drivers/mmc/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/Kconfig b/drivers/mmc/Kconfig index ba9a723..24f4b28 100644 --- a/drivers/mmc/Kconfig +++ b/drivers/mmc/Kconfig @@ -19,6 +19,7 @@ config DM_MMC config DM_MMC_OPS bool "Support MMC controller operations using Driver Model" depends on DM_MMC + default y if DM_MMC help Driver model provides a means of supporting device operations. This option moves MMC operations under the control of driver model. The |