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
|
@ -90,8 +90,10 @@ static int pci_vpb_map_irq(PCIDevice *d, int irq_num)
|
|||
return irq_num;
|
||||
}
|
||||
|
||||
static void pci_vpb_set_irq(qemu_irq *pic, int irq_num, int level)
|
||||
static void pci_vpb_set_irq(void *opaque, int irq_num, int level)
|
||||
{
|
||||
qemu_irq *pic = opaque;
|
||||
|
||||
qemu_set_irq(pic[irq_num], level);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue