summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2021-03-27 11:43:54 +0100
committerTom Rini <[email protected]>2021-04-20 07:31:12 -0400
commitec611871f3eb366f7efd557167ec2284e5f5069b (patch)
tree31debb1cff435f972fdc553f643726e75486d812 /cmd
parent935e0b0ecd2d2303fca12aa0c55d2af1783e61dc (diff)
cmd: CONFIG_CMD_MMC depends on CONFIG_MMC
Trying to compile with CONFIG_CMD_MMC=y and CONFIG_MMC=n leads to errors: riscv64-linux-gnu-ld.bfd: cmd/built-in.o: in function `do_mmcops': cmd/mmc.c:984: undefined reference to `get_mmc_num' riscv64-linux-gnu-ld.bfd: cmd/built-in.o: in function `do_mmc_setdsr': cmd/mmc.c:873: undefined reference to `find_mmc_device' Add missing dependency. Signed-off-by: Heinrich Schuchardt <[email protected]> Reviewed-by: Bin Meng <[email protected]> Reviewed-by: Jaehoon Chung <[email protected]>
Diffstat (limited to 'cmd')
-rw-r--r--cmd/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig
index f4cff0c1258..2b66285e0d4 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1067,6 +1067,7 @@ config CMD_MISC
config CMD_MMC
bool "mmc"
+ depends on MMC
help
MMC memory mapped support.