dfu: nand: Add missing dependency on CMD_MTDPARTS
authorBoris Brezillon <boris.brezillon@bootlin.com>
Tue, 13 Nov 2018 11:43:10 +0000 (12:43 +0100)
committerJagan Teki <jagan@amarulasolutions.com>
Tue, 13 Nov 2018 13:23:10 +0000 (18:53 +0530)
dfu_fill_entity_nand() uses find_dev_and_part() and mtdparts_init()
which are provided by cmd/mtdparts.c.

Add the dependency to avoid build failures when CMD_MTDPARTS is not
selected.

Reported-by: Jagan Teki <jagan@amarulasolutions.com>
Fixes: 6828e602b722d ("dfu: Migrate to Kconfig")
Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Jagan Teki <jagan@openedev.com>
drivers/dfu/Kconfig

index 51ab484c2a4953194b3d36e59e262ad24048eba1..4692736c9d24fe1d44cd280ad4292ab6e23b6198 100644 (file)
@@ -30,6 +30,7 @@ config DFU_MMC
 
 config DFU_NAND
        bool "NAND back end for DFU"
+       depends on CMD_MTDPARTS
        help
          This option enables using DFU to read and write to NAND based
          storage.