diff options
author | Greg Kurz | 2020-11-20 18:46:43 +0100 |
---|---|---|
committer | David Gibson | 2020-12-14 05:50:55 +0100 |
commit | 0b66209d9f8d35ba0f894b14ac00996b5ecf547c (patch) | |
tree | 30544bcac1ed33b467dc7b7230b5c0f12e0f6949 /include/hw | |
parent | spapr/xive: Turn some sanity checks into assertions (diff) | |
download | qemu-0b66209d9f8d35ba0f894b14ac00996b5ecf547c.tar.gz qemu-0b66209d9f8d35ba0f894b14ac00996b5ecf547c.tar.xz qemu-0b66209d9f8d35ba0f894b14ac00996b5ecf547c.zip |
spapr/xics: Drop unused argument to xics_kvm_has_broken_disconnect()
Never used from the start.
Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <20201120174646.619395-6-groug@kaod.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/ppc/xics_spapr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/ppc/xics_spapr.h b/include/hw/ppc/xics_spapr.h index 0b8182e40b..de752c0d2c 100644 --- a/include/hw/ppc/xics_spapr.h +++ b/include/hw/ppc/xics_spapr.h @@ -38,6 +38,6 @@ DECLARE_INSTANCE_CHECKER(ICSState, ICS_SPAPR, int xics_kvm_connect(SpaprInterruptController *intc, uint32_t nr_servers, Error **errp); void xics_kvm_disconnect(SpaprInterruptController *intc); -bool xics_kvm_has_broken_disconnect(SpaprMachineState *spapr); +bool xics_kvm_has_broken_disconnect(void); #endif /* XICS_SPAPR_H */ |