mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 08:01:08 +00:00
dm: mmc: Correct Kconfig condition for SPL_DM_MMC_OPS
This should depend on SPL_DM_MMC, not SPL_DM. For it and update the only affected board's defconfig. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
2088747743
commit
b9a40c0c0a
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ config SPL_DM_MMC
|
|||
|
||||
config SPL_DM_MMC_OPS
|
||||
bool "Support MMC controller operations using Driver Model in SPL"
|
||||
depends on SPL_DM && DM_MMC_OPS
|
||||
depends on SPL_DM_MMC && DM_MMC_OPS
|
||||
default y
|
||||
help
|
||||
Driver model provides a means of supporting device operations. This
|
||||
|
|
Loading…
Reference in a new issue