diff options
author | David Hildenbrand | 2015-06-25 09:55:55 +0200 |
---|---|---|
committer | Cornelia Huck | 2015-10-21 12:21:30 +0200 |
commit | feacc6c2c8fff037f67a89402b29923251833425 (patch) | |
tree | caf18c2f3f11603d50a255d169aa1406270f2937 /hw/s390x/ipl.h | |
parent | s390x: unify device reset during subsystem_reset() (diff) | |
download | qemu-feacc6c2c8fff037f67a89402b29923251833425.tar.gz qemu-feacc6c2c8fff037f67a89402b29923251833425.tar.xz qemu-feacc6c2c8fff037f67a89402b29923251833425.zip |
s390x/ipl: we always have an ipl device
Both s390 machines unconditionally create an ipl device, so no need to
handle the missing case.
Now we can also change s390_ipl_update_diag308() to return void.
Reviewed-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Acked-by: Christian Borntraeger <borntraeger@de.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/ipl.h')
-rw-r--r-- | hw/s390x/ipl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/s390x/ipl.h b/hw/s390x/ipl.h index 70497bc65f..6424e08db8 100644 --- a/hw/s390x/ipl.h +++ b/hw/s390x/ipl.h @@ -18,7 +18,7 @@ typedef struct IplParameterBlock { uint8_t reserved2[88]; } IplParameterBlock; -int s390_ipl_update_diag308(IplParameterBlock *iplb); +void s390_ipl_update_diag308(IplParameterBlock *iplb); IplParameterBlock *s390_ipl_get_iplb(void); void s390_reipl_request(void); |