We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e47b41c commit cea7318Copy full SHA for cea7318
drivers/virtio/CMakeLists.txt
@@ -5,3 +5,4 @@ zephyr_library()
5
6
zephyr_library_sources_ifdef(CONFIG_VIRTIO virtqueue.c)
7
zephyr_library_sources_ifdef(CONFIG_VIRTIO_PCI virtio_pci.c)
8
+zephyr_library_sources_ifdef(CONFIG_VIRTIO_MMIO virtio_mmio.c)
drivers/virtio/Kconfig
@@ -15,6 +15,13 @@ config VIRTIO_PCI
15
help
16
Enable options for VIRTIO over PCI
17
18
+config VIRTIO_MMIO
19
+ bool "support for VIRTIO over MMIO"
20
+ default y
21
+ depends on DT_HAS_VIRTIO_MMIO_ENABLED
22
+ help
23
+ Enable options for VIRTIO over MMIO
24
+
25
endif # VIRTIO
26
27
module = VIRTIO
0 commit comments