diff options
author | Pierre Morel <pmorel@linux.vnet.ibm.com> | 2016-09-07 13:04:46 +0200 |
---|---|---|
committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2016-09-19 11:05:51 +0200 |
commit | 7aa2adc28335f4ac47f7e86e043fb8557eb3cbc3 (patch) | |
tree | 745e704155f0eedbbfbdf700a939782258b41fbc /hw/s390x | |
parent | e32652f7594e6c027737fa495974cb73754cb5d0 (diff) | |
download | qemu-7aa2adc28335f4ac47f7e86e043fb8557eb3cbc3.zip qemu-7aa2adc28335f4ac47f7e86e043fb8557eb3cbc3.tar.gz qemu-7aa2adc28335f4ac47f7e86e043fb8557eb3cbc3.tar.bz2 |
virtio-ccw: set revision 2 as maximal revision number
We have everything needed for virtio-ccw revision 2 wired up now.
Bump the maximum supported revision reported on a device basis to
the guest so they can make use of it.
Signed-off-by: Pierre Morel <pmorel@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'hw/s390x')
-rw-r--r-- | hw/s390x/virtio-ccw.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/virtio-ccw.h b/hw/s390x/virtio-ccw.h index 6ef940a..565094e 100644 --- a/hw/s390x/virtio-ccw.h +++ b/hw/s390x/virtio-ccw.h @@ -99,7 +99,7 @@ struct VirtioCcwDevice { }; /* The maximum virtio revision we support. */ -#define VIRTIO_CCW_MAX_REV 1 +#define VIRTIO_CCW_MAX_REV 2 static inline int virtio_ccw_rev_max(VirtioCcwDevice *dev) { return dev->max_rev; |