summaryrefslogtreecommitdiff
path: root/default-configs
diff options
context:
space:
mode:
authorCornelia Huck <cornelia.huck@de.ibm.com>2014-04-17 15:59:48 +0200
committerCornelia Huck <cornelia.huck@de.ibm.com>2014-05-20 13:05:57 +0200
commit7b35d0c44cae3dcce6347a0729a416c2929cd4bb (patch)
tree66f476d35c17d537c44bf5fc2bdf9e0a14016bf9 /default-configs
parent61c7bbd236b90da7531fcf957223a2456670d44d (diff)
downloadqemu-7b35d0c44cae3dcce6347a0729a416c2929cd4bb.tar.gz
s390x: split flic into kvm and non-kvm parts
Introduce a common parent class for both cases, where kvm and non-kvm can hook up callbacks. This will be used by follow-on patches for adapter registration and mapping. We now always have a flic, regardless of whether we use kvm; the non-kvm implementation just doesn't do anything. Reviewed-by: Jens Freimann <jfrei@linux.vnet.ibm.com> Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'default-configs')
-rw-r--r--default-configs/s390x-softmmu.mak3
1 files changed, 2 insertions, 1 deletions
diff --git a/default-configs/s390x-softmmu.mak b/default-configs/s390x-softmmu.mak
index d843dc0d57..126d88dc15 100644
--- a/default-configs/s390x-softmmu.mak
+++ b/default-configs/s390x-softmmu.mak
@@ -1,3 +1,4 @@
CONFIG_VIRTIO=y
CONFIG_SCLPCONSOLE=y
-CONFIG_S390_FLIC=$(CONFIG_KVM)
+CONFIG_S390_FLIC=y
+CONFIG_S390_FLIC_KVM=$(CONFIG_KVM)