summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2021-02-25 17:22:47 +0800
committerPriyanka Jain <priyanka.jain@nxp.com>2021-03-05 10:25:43 +0530
commit5474ef886c971f925d5ce1f2e57adfeb8e7865e4 (patch)
tree775ae83d09ac02b294cfa38f44b513edce41fa0e /drivers
parent46c9b595369170bc011e56dfb0c26d834f3e5e60 (diff)
downloadu-boot-5474ef886c971f925d5ce1f2e57adfeb8e7865e4.tar.gz
u-boot-5474ef886c971f925d5ce1f2e57adfeb8e7865e4.tar.xz
u-boot-5474ef886c971f925d5ce1f2e57adfeb8e7865e4.zip
virtio: Fix VirtIO BLK driver dependency
The VirtIO BLK driver depends on the blk uclass driver. Add the dependency in the Kconfig. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/virtio/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig
index e800720657..1835607083 100644
--- a/drivers/virtio/Kconfig
+++ b/drivers/virtio/Kconfig
@@ -55,6 +55,7 @@ config VIRTIO_NET
config VIRTIO_BLK
bool "virtio block driver"
depends on VIRTIO
+ depends on BLK
help
This is the virtual block driver for virtio. It can be used with
QEMU based targets.