diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2012-09-28 05:35:14 (GMT) |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-09-28 05:35:14 (GMT) |
commit | 04679f34c141a0591e525d392929efc249440a7c (patch) | |
tree | 2aba7250686e6080b7fbf1b8d83ef8b70ea7d7e8 /drivers | |
parent | f22cf8eb485260ac6e32a614121d44998d83a69a (diff) | |
download | linux-04679f34c141a0591e525d392929efc249440a7c.tar.xz |
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')
-rw-r--r-- | drivers/virtio/Kconfig | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig index f38b17a..271be80 100644 --- a/drivers/virtio/Kconfig +++ b/drivers/virtio/Kconfig @@ -27,8 +27,7 @@ config VIRTIO_PCI config VIRTIO_BALLOON tristate "Virtio balloon driver (EXPERIMENTAL)" - select VIRTIO - select VIRTIO_RING + depends on EXPERIMENTAL && VIRTIO ---help--- This driver supports increasing and decreasing the amount of memory within a KVM guest. |