mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
pci: Eliminate redundant PCIDevice::bus pointer
The bus pointer in PCIDevice is basically redundant with QOM information. It's always initialized to the qdev_get_parent_bus(), the only difference is the type. Therefore this patch eliminates the field, instead creating a pci_get_bus() helper to do the type mangling to derive it conveniently from the QOM Device object underneath. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Marcel Apfelbaum <marcel@redhat.com> Reviewed-by: Peter Xu <peterx@redhat.com>
This commit is contained in:
parent
cdc57472dc
commit
fd56e0612b
20 changed files with 102 additions and 92 deletions
|
@ -311,7 +311,7 @@ static const MemoryRegionOps pci_vpb_config_ops = {
|
|||
|
||||
static int pci_vpb_map_irq(PCIDevice *d, int irq_num)
|
||||
{
|
||||
PCIVPBState *s = container_of(d->bus, PCIVPBState, pci_bus);
|
||||
PCIVPBState *s = container_of(pci_get_bus(d), PCIVPBState, pci_bus);
|
||||
|
||||
if (s->irq_mapping == PCI_VPB_IRQMAP_BROKEN) {
|
||||
/* Legacy broken IRQ mapping for compatibility with old and
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue