X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Fpiix3.c;h=8c2872d104afccd07fac355a1f2db42775220ca8;hp=9a69ed0ff3b53d90ab9f529bd921bd6b252ca13d;hb=afb2a35b2e15ba0fa932c4e49a3678f958a4502a;hpb=3a4e54ec208ea3589963b410d2d73292bbc4a8fe diff --git a/palacios/src/devices/piix3.c b/palacios/src/devices/piix3.c index 9a69ed0..8c2872d 100644 --- a/palacios/src/devices/piix3.c +++ b/palacios/src/devices/piix3.c @@ -367,7 +367,7 @@ static int raise_pci_irq(struct vm_device * dev, struct pci_device * pci_dev) { int intr_pin = pci_dev->config_header.intr_pin - 1; int irq_index = (intr_pin + pci_dev->dev_num - 1) & 0x3; - PrintError("Raising PCI IRQ %d\n", piix3_cfg->pirq_rc[irq_index]); + // PrintError("Raising PCI IRQ %d\n", piix3_cfg->pirq_rc[irq_index]); v3_raise_irq(dev->vm, piix3_cfg->pirq_rc[irq_index]); @@ -421,7 +421,7 @@ static int setup_pci(struct vm_device * dev) { pci_dev = v3_pci_register_device(piix3->pci_bus, PCI_MULTIFUNCTION, bus_num, -1, 0, "PIIX3", bars, - NULL, NULL, NULL, dev, NULL); + NULL, NULL, NULL, dev); if (pci_dev == NULL) { PrintError("Could not register PCI Device for PIIX3\n"); return -1;