diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-26 14:31:11 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-07 14:48:19 -0500 |
commit | a8a53cfa8de0a75487fae2fad7643ae9e90c0195 (patch) | |
tree | 128bfc0df20013084a3080dc0f6c3bfb737e52ec | |
parent | dc314185be49bfceb63591bd38b14f28ccf9f9fb (diff) | |
download | u-boot-a8a53cfa8de0a75487fae2fad7643ae9e90c0195.tar.gz u-boot-a8a53cfa8de0a75487fae2fad7643ae9e90c0195.tar.bz2 u-boot-a8a53cfa8de0a75487fae2fad7643ae9e90c0195.zip |
virtio: Make VIRTIO_NET depend on NETDEVICES
As VIRTIO_NET is the symbol for enabling network devices, make this
depend on NETDEVICES
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/virtio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig index 852f6735b6..1de68867d5 100644 --- a/drivers/virtio/Kconfig +++ b/drivers/virtio/Kconfig @@ -56,7 +56,7 @@ config VIRTIO_SANDBOX config VIRTIO_NET bool "virtio net driver" - depends on VIRTIO + depends on VIRTIO && NETDEVICES help This is the virtual net driver for virtio. It can be used with QEMU based targets. |