diff options
author | Greg Kurz <groug@kaod.org> | 2020-01-06 15:56:43 +0100 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2020-01-08 11:01:59 +1100 |
commit | 806fed593d0ed88d2f11e45cc54612daec98fe27 (patch) | |
tree | 21ce7fcef2c48641b2728508c3943368329186cd /hw/ppc/pnv.c | |
parent | 74e51a38f74537d7260f0d45fb01e675f1558163 (diff) | |
download | qemu-806fed593d0ed88d2f11e45cc54612daec98fe27.zip qemu-806fed593d0ed88d2f11e45cc54612daec98fe27.tar.gz qemu-806fed593d0ed88d2f11e45cc54612daec98fe27.tar.bz2 |
pnv/xive: Deduce the PnvXive pointer from XiveTCTX::xptr
And use it instead of reaching out to the machine. This allows to get
rid of pnv_get_chip().
Signed-off-by: Greg Kurz <groug@kaod.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20200106145645.4539-11-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/ppc/pnv.c')
-rw-r--r-- | hw/ppc/pnv.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c index 19fc5d4..e2735bb 100644 --- a/hw/ppc/pnv.c +++ b/hw/ppc/pnv.c @@ -1717,20 +1717,6 @@ static int pnv_match_nvt(XiveFabric *xfb, uint8_t format, return total_count; } -PnvChip *pnv_get_chip(uint32_t chip_id) -{ - PnvMachineState *pnv = PNV_MACHINE(qdev_get_machine()); - int i; - - for (i = 0; i < pnv->num_chips; i++) { - PnvChip *chip = pnv->chips[i]; - if (chip->chip_id == chip_id) { - return chip; - } - } - return NULL; -} - static void pnv_machine_power8_class_init(ObjectClass *oc, void *data) { MachineClass *mc = MACHINE_CLASS(oc); |