X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Fpiix3.c;h=44a00ed2452c272486d68e80506f7b45f6c83efe;hb=ed8feff1d5dd6bf028cd5ba0960ec125505d7597;hp=8b2f6272e97f5de1a6c0482669522895563a4932;hpb=cfcceed5890430afedcc544bd7dbb69e29dfd65a;p=palacios.git diff --git a/palacios/src/devices/piix3.c b/palacios/src/devices/piix3.c index 8b2f627..44a00ed 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, dev, NULL); if (pci_dev == NULL) { PrintError("Could not register PCI Device for PIIX3\n"); return -1;