From: David Hildenbrand Date: Fri, 18 Aug 2017 11:43:38 +0000 (+0200) Subject: target/s390x: simplify ri_allowed() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ad4ad5f5125be3de5613221e073d5ebb4dd7fb89;p=qemu.git target/s390x: simplify ri_allowed() Only used in KVM and there is no reason why it shouldn't be allowed for tcg - it is simply not available. Signed-off-by: David Hildenbrand Message-Id: <20170818114353.13455-4-david@redhat.com> Reviewed-by: Thomas Huth Signed-off-by: Cornelia Huck --- diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c index 8331c0a275..cdf7fa042b 100644 --- a/hw/s390x/s390-virtio-ccw.c +++ b/hw/s390x/s390-virtio-ccw.c @@ -278,9 +278,6 @@ static S390CcwMachineClass *get_machine_class(void) bool ri_allowed(void) { - if (!kvm_enabled()) { - return false; - } /* for "none" machine this results in true */ return get_machine_class()->ri_allowed; }