aboutsummaryrefslogtreecommitdiff
path: root/hw/s390x/sclpquiesce.c
diff options
context:
space:
mode:
authorClaudio Imbrenda <imbrenda@linux.vnet.ibm.com>2018-02-23 18:42:57 +0100
committerCornelia Huck <cohuck@redhat.com>2018-03-08 15:49:23 +0100
commit1ffed98f244bd005aef053be968e2ed939e91396 (patch)
treeef8f7a669ce10585adeb7216169cf650300c49d1 /hw/s390x/sclpquiesce.c
parentbc61c8c626d17970b8fdd48a2f044b92418500e0 (diff)
downloadqemu-1ffed98f244bd005aef053be968e2ed939e91396.zip
qemu-1ffed98f244bd005aef053be968e2ed939e91396.tar.gz
qemu-1ffed98f244bd005aef053be968e2ed939e91396.tar.bz2
s390x/sclp: clean up sclp masks
Introduce an sccb_mask_t to be used for SCLP event masks instead of just unsigned int or uint32_t. This will allow later to extend the mask with more ease. Signed-off-by: Claudio Imbrenda <imbrenda@linux.vnet.ibm.com> Message-Id: <1519407778-23095-3-git-send-email-imbrenda@linux.vnet.ibm.com> Reviewed-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
Diffstat (limited to 'hw/s390x/sclpquiesce.c')
-rw-r--r--hw/s390x/sclpquiesce.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/s390x/sclpquiesce.c b/hw/s390x/sclpquiesce.c
index 0241643..1c8f5c9 100644
--- a/hw/s390x/sclpquiesce.c
+++ b/hw/s390x/sclpquiesce.c
@@ -28,12 +28,12 @@ static bool can_handle_event(uint8_t type)
return type == SCLP_EVENT_SIGNAL_QUIESCE;
}
-static unsigned int send_mask(void)
+static sccb_mask_t send_mask(void)
{
return SCLP_EVENT_MASK_SIGNAL_QUIESCE;
}
-static unsigned int receive_mask(void)
+static sccb_mask_t receive_mask(void)
{
return 0;
}