summaryrefslogtreecommitdiffstats
path: root/hw/s390x/sclpcpu.c
diff options
context:
space:
mode:
authorDavid Hildenbrand2015-05-11 15:31:47 +0200
committerCornelia Huck2015-09-07 16:10:43 +0200
commit35925a7a73e7df4118cb11667095bd2d8fc4e091 (patch)
tree76b805f6b42b4366c8b83c31e92f75d7008054ec /hw/s390x/sclpcpu.c
parents390/sclp: rework sclp event facility initialization + device realization (diff)
downloadqemu-35925a7a73e7df4118cb11667095bd2d8fc4e091.tar.gz
qemu-35925a7a73e7df4118cb11667095bd2d8fc4e091.tar.xz
qemu-35925a7a73e7df4118cb11667095bd2d8fc4e091.zip
s390/sclp: replace sclp event types with proper defines
Introduce TYPE_SCLP_QUIESCE and make use of it. Also use TYPE_SCLP_CPU_HOTPLUG where applicable. Reviewed-by: Matthew Rosato <mjrosato@linux.vnet.ibm.com> Signed-off-by: David Hildenbrand <dahi@linux.vnet.ibm.com> Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Diffstat (limited to 'hw/s390x/sclpcpu.c')
-rw-r--r--hw/s390x/sclpcpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/sclpcpu.c b/hw/s390x/sclpcpu.c
index 615ac06b18..322eb31d95 100644
--- a/hw/s390x/sclpcpu.c
+++ b/hw/s390x/sclpcpu.c
@@ -85,7 +85,7 @@ static void cpu_class_init(ObjectClass *oc, void *data)
}
static const TypeInfo sclp_cpu_info = {
- .name = "sclp-cpu-hotplug",
+ .name = TYPE_SCLP_CPU_HOTPLUG,
.parent = TYPE_SCLP_EVENT,
.instance_size = sizeof(SCLPEvent),
.class_init = cpu_class_init,