mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
We want the argument pass to set_irq to be opaque
piix_pci want to pass more things that the pic Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
6c009fa446
commit
5d4e84c8b9
13 changed files with 37 additions and 19 deletions
6
hw/pci.c
6
hw/pci.c
|
@ -41,7 +41,7 @@ struct PCIBus {
|
|||
pci_set_irq_fn set_irq;
|
||||
pci_map_irq_fn map_irq;
|
||||
uint32_t config_reg; /* XXX: suppress */
|
||||
qemu_irq *irq_opaque;
|
||||
void *irq_opaque;
|
||||
PCIDevice *devices[256];
|
||||
PCIDevice *parent_dev;
|
||||
PCIBus *next;
|
||||
|
@ -100,7 +100,7 @@ static void pci_bus_reset(void *opaque)
|
|||
|
||||
PCIBus *pci_register_bus(DeviceState *parent, const char *name,
|
||||
pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
|
||||
qemu_irq *pic, int devfn_min, int nirq)
|
||||
void *irq_opaque, int devfn_min, int nirq)
|
||||
{
|
||||
PCIBus *bus;
|
||||
static int nbus = 0;
|
||||
|
@ -108,7 +108,7 @@ PCIBus *pci_register_bus(DeviceState *parent, const char *name,
|
|||
bus = FROM_QBUS(PCIBus, qbus_create(&pci_bus_info, parent, name));
|
||||
bus->set_irq = set_irq;
|
||||
bus->map_irq = map_irq;
|
||||
bus->irq_opaque = pic;
|
||||
bus->irq_opaque = irq_opaque;
|
||||
bus->devfn_min = devfn_min;
|
||||
bus->nirq = nirq;
|
||||
bus->irq_count = qemu_mallocz(nirq * sizeof(bus->irq_count[0]));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue