diff options
author | Cédric Le Goater | 2019-01-02 06:57:37 +0100 |
---|---|---|
committer | David Gibson | 2019-01-08 23:28:14 +0100 |
commit | a0c493ae67c8176bba0385aaab49d6129838b525 (patch) | |
tree | 4a4e9edfd07e393f150acaadbed41015592755bb /include/hw/ppc/spapr_xive.h | |
parent | spapr_pci: Define SPAPR_MAX_PHBS in hw/pci-host/spapr.h (diff) | |
download | qemu-a0c493ae67c8176bba0385aaab49d6129838b525.tar.gz qemu-a0c493ae67c8176bba0385aaab49d6129838b525.tar.xz qemu-a0c493ae67c8176bba0385aaab49d6129838b525.zip |
spapr/xive: simplify the sPAPR IRQ qirq method for XIVE
The qirq routines of the XiveSource and the sPAPRXive model are only
used under the sPAPR IRQ backend. Simplify the overall call stack and
gather all the code under spapr_qirq_xive(). It will ease future
changes.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'include/hw/ppc/spapr_xive.h')
-rw-r--r-- | include/hw/ppc/spapr_xive.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/ppc/spapr_xive.h b/include/hw/ppc/spapr_xive.h index 728735dbcf..9ee524fdb2 100644 --- a/include/hw/ppc/spapr_xive.h +++ b/include/hw/ppc/spapr_xive.h @@ -40,7 +40,6 @@ typedef struct sPAPRXive { bool spapr_xive_irq_claim(sPAPRXive *xive, uint32_t lisn, bool lsi); bool spapr_xive_irq_free(sPAPRXive *xive, uint32_t lisn); void spapr_xive_pic_print_info(sPAPRXive *xive, Monitor *mon); -qemu_irq spapr_xive_qirq(sPAPRXive *xive, uint32_t lisn); typedef struct sPAPRMachineState sPAPRMachineState; |