diff options
| author | Greg Kurz <groug@kaod.org> | 2017-05-15 13:39:16 +0200 |
|---|---|---|
| committer | David Gibson <david@gibson.dropbear.id.au> | 2017-05-24 11:39:52 +1000 |
| commit | f63ebfe0ac9efc83ee6d3753e9b3ed7229d8b28a (patch) | |
| tree | 292510d4cbf1699dcfc1f66667553bb7c8fa313e /include/hw/ppc | |
| parent | a8b73734219802e226a5444ffd84d07a085edd28 (diff) | |
| download | focaccia-qemu-f63ebfe0ac9efc83ee6d3753e9b3ed7229d8b28a.tar.gz focaccia-qemu-f63ebfe0ac9efc83ee6d3753e9b3ed7229d8b28a.zip | |
ppc/xics: simplify prototype of xics_spapr_init()
This function only does hypercall and RTAS-call registration, and thus never returns an error. This patch adapt the prototype to reflect that. Signed-off-by: Greg Kurz <groug@kaod.org> Reviewed-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include/hw/ppc')
| -rw-r--r-- | include/hw/ppc/xics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/ppc/xics.h b/include/hw/ppc/xics.h index 05e6acbb35..d6cb51f3ad 100644 --- a/include/hw/ppc/xics.h +++ b/include/hw/ppc/xics.h @@ -206,6 +206,6 @@ void icp_resend(ICPState *ss); typedef struct sPAPRMachineState sPAPRMachineState; int xics_kvm_init(sPAPRMachineState *spapr, Error **errp); -int xics_spapr_init(sPAPRMachineState *spapr, Error **errp); +void xics_spapr_init(sPAPRMachineState *spapr); #endif /* XICS_H */ |