From: Bin Meng Date: Thu, 25 Feb 2021 09:22:47 +0000 (+0800) Subject: virtio: Fix VirtIO BLK driver dependency X-Git-Tag: v2025.01-rc5-pxa1908~1970^2~12 X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=5474ef886c971f925d5ce1f2e57adfeb8e7865e4;p=u-boot.git 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 Reviewed-by: Simon Glass Reviewed-by: Priyanka Jain --- 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.