aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/virtio/Makefile
diff options
context:
space:
mode:
authorCornelia Huck <cornelia.huck@de.ibm.com>2016-07-07 17:07:57 +0200
committerMichael S. Tsirkin <mst@redhat.com>2016-08-09 13:42:41 +0300
commit3b2fbb3f06efe5bd2dfdce2a1db703e23c1a78af (patch)
tree5579f52e1c414bc6c2875126e46144399e06a1e0 /drivers/s390/virtio/Makefile
parentvirtio/s390: keep early_put_chars (diff)
downloadlinux-dev-3b2fbb3f06efe5bd2dfdce2a1db703e23c1a78af.tar.xz
linux-dev-3b2fbb3f06efe5bd2dfdce2a1db703e23c1a78af.zip
virtio/s390: deprecate old transport
There only ever have been two host implementations of the old s390-virtio (pre-ccw) transport: the experimental kuli userspace, and qemu. As qemu switched its default to ccw with 2.4 (with most users having used ccw well before that) and removed the old transport entirely in 2.6, s390-virtio probably hasn't been in active use for quite some time and is therefore likely to bitrot. Let's start the slow march towards removing the code by deprecating it. Note that this also deprecates the early virtio console code, which has been causing trouble in the guest without being wired up in any relevant hypervisor code. Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> Reviewed-by: Dong Jia Shi <bjsdjshi@linux.vnet.ibm.com> Reviewed-by: Sascha Silbe <silbe@linux.vnet.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/s390/virtio/Makefile')
-rw-r--r--drivers/s390/virtio/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/s390/virtio/Makefile b/drivers/s390/virtio/Makefile
index 241891a57caf..df40692a9011 100644
--- a/drivers/s390/virtio/Makefile
+++ b/drivers/s390/virtio/Makefile
@@ -6,4 +6,8 @@
# it under the terms of the GNU General Public License (version 2 only)
# as published by the Free Software Foundation.
-obj-$(CONFIG_S390_GUEST) += kvm_virtio.o virtio_ccw.o
+s390-virtio-objs := virtio_ccw.o
+ifdef CONFIG_S390_GUEST_OLD_TRANSPORT
+s390-virtio-objs += kvm_virtio.o
+endif
+obj-$(CONFIG_S390_GUEST) += $(s390-virtio-objs)