diff options
author | David Hildenbrand <dahi@linux.vnet.ibm.com> | 2015-05-13 15:06:44 +0200 |
---|---|---|
committer | Cornelia Huck <cornelia.huck@de.ibm.com> | 2015-09-07 16:10:43 +0200 |
commit | 1723a1b6313851d9704961e1f527312ee0a5fce4 (patch) | |
tree | 0c937fc5327759aac2ecf9d020d1de10742b713f /include | |
parent | 25a3c5af57db0319f5cfb4c439efbc78b230599e (diff) | |
download | qemu-1723a1b6313851d9704961e1f527312ee0a5fce4.zip |
s390/sclp: move sclp_service_interrupt into the sclp device
Let's make that function a method of the new sclp device, keeping
the wrapper for existing users.
We can now let go of get_event_facility().
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 'include')
-rw-r--r-- | include/hw/s390x/sclp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/s390x/sclp.h b/include/hw/s390x/sclp.h index 60db98cb91..50094ebcc8 100644 --- a/include/hw/s390x/sclp.h +++ b/include/hw/s390x/sclp.h @@ -192,6 +192,7 @@ typedef struct SCLPDeviceClass { /* public */ void (*execute)(SCLPDevice *sclp, SCCB *sccb, uint32_t code); + void (*service_interrupt)(SCLPDevice *sclp, uint32_t sccb); } SCLPDeviceClass; typedef struct sclpMemoryHotplugDev sclpMemoryHotplugDev; |