aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/virtio
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2012-09-28 01:35:14 -0400
committerRusty Russell <rusty@rustcorp.com.au>2012-09-28 01:35:14 -0400
commit04679f34c141a0591e525d392929efc249440a7c (patch)
tree2aba7250686e6080b7fbf1b8d83ef8b70ea7d7e8 /drivers/virtio
parentf22cf8eb485260ac6e32a614121d44998d83a69a (diff)
virtio-balloon: dependency fix
Devices should depend on virtio, not select it. It's supposed to be selected by the particular driver, e.g. VIRTIO_PCI. Make balloon depend on VIRTIO and EXPERIMENTAL (to match description). Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/virtio')
-rw-r--r--drivers/virtio/Kconfig3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig
index f38b17a86c35..271be8059b93 100644
--- a/drivers/virtio/Kconfig
+++ b/drivers/virtio/Kconfig
@@ -27,8 +27,7 @@ config VIRTIO_PCI
27 27
28config VIRTIO_BALLOON 28config VIRTIO_BALLOON
29 tristate "Virtio balloon driver (EXPERIMENTAL)" 29 tristate "Virtio balloon driver (EXPERIMENTAL)"
30 select VIRTIO 30 depends on EXPERIMENTAL && VIRTIO
31 select VIRTIO_RING
32 ---help--- 31 ---help---
33 This driver supports increasing and decreasing the amount 32 This driver supports increasing and decreasing the amount
34 of memory within a KVM guest. 33 of memory within a KVM guest.