Home
last modified time | relevance | path

Searched hist:"9 c720c81" (Results 1 – 1 of 1) sorted by relevance

/openbmc/u-boot/drivers/mmc/
H A DKconfig9c720c81 Fri Dec 30 08:20:14 CST 2016 Masahiro Yamada <yamada.masahiro@socionext.com> mmc: uniphier-sd: fix Kconfig dependency

Some MMC drivers describe operations with the DM_MMC_OPS form, but
there are still several drivers with older implementation. We can
not compile drivers from different groups at the same time because
the core framework is shared with #ifdef CONFIG_DM_MMC_OPS.

Every driver should have "depends on DM_MMC_OPS" (or !DM_MMC_OPS)
explicitly to express which framework it is based on. This will
avoid enabling drivers with incompatible interface at the same time.
It is incorrect to make a driver "select DM_MMC_OPS".

While we are here, add "depends on OF_CONTROL" as well because this
driver can be configured only by Device Tree.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>