diff options
| author | Christian Borntraeger | 2017-01-10 14:44:31 +0100 |
|---|---|---|
| committer | Cornelia Huck | 2017-01-20 09:48:09 +0100 |
| commit | 765cca0533ca3031f0cd1222eff187b330b527e6 (patch) | |
| tree | d9f1bc4d1aea1ee5161da47ea39d965c67d4baf2 /hw/s390x | |
| parent | Merge remote-tracking branch 'remotes/artyom/tags/pull-sun4v-20170118' into s... (diff) | |
| download | qemu-765cca0533ca3031f0cd1222eff187b330b527e6.tar.gz qemu-765cca0533ca3031f0cd1222eff187b330b527e6.tar.xz qemu-765cca0533ca3031f0cd1222eff187b330b527e6.zip | |
s390x: remove double compat statement
We chain our compat handler via the CCW_COMPAT macros and via the
class_init function. (e.g. ccw_machine_2_7_class_options calls
ccw_machine_2_8_class_options). As all class_init functions in that
chain call SET_MACHINE_COMPAT for their compat settings, and
SET_MACHINE_COMPAT will append there is no need to do that again.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'hw/s390x')
| -rw-r--r-- | hw/s390x/s390-virtio-ccw.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c index e340eab36b..dbf4f01165 100644 --- a/hw/s390x/s390-virtio-ccw.c +++ b/hw/s390x/s390-virtio-ccw.c @@ -339,7 +339,6 @@ static const TypeInfo ccw_machine_info = { HW_COMPAT_2_7 #define CCW_COMPAT_2_6 \ - CCW_COMPAT_2_7 \ HW_COMPAT_2_6 \ {\ .driver = TYPE_S390_IPL,\ @@ -352,7 +351,6 @@ static const TypeInfo ccw_machine_info = { }, #define CCW_COMPAT_2_5 \ - CCW_COMPAT_2_6 \ HW_COMPAT_2_5 #define CCW_COMPAT_2_4 \ |
