Changeset 36218 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Mar 9, 2011 9:32:02 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r36203 r36218 1658 1658 return; 1659 1659 1660 Log(("BIOS init device: %02x: :%02x.%d\n", uBus, uDevFn >> 3, uDevFn & 7));1660 Log(("BIOS init device: %02x:%02x.%d\n", uBus, uDevFn >> 3, uDevFn & 7)); 1661 1661 1662 1662 switch (uDevClass) … … 2296 2296 pciDevIsMsixCapable(pPciDev) ? " MSI-X" : "" 2297 2297 ); 2298 if ( !pciDevIsPassthrough(pPciDev) && PCIDevGetInterruptPin(pPciDev) != 0)2299 pHlp->pfnPrintf(pHlp, " IRQ%d", PCIDevGetInterruptLine(pPciDev));2298 if (ich9pciGetByte(pPciDev, VBOX_PCI_INTERRUPT_PIN) != 0) 2299 pHlp->pfnPrintf(pHlp, " IRQ%d", ich9pciGetByte(pPciDev, VBOX_PCI_INTERRUPT_LINE)); 2300 2300 2301 2301 pHlp->pfnPrintf(pHlp, "\n"); … … 2618 2618 2619 2619 /** @todo: other chipset devices shall be registered too */ 2620 /** @todo: what to with bridges? */2621 2620 2622 2621 PDMDevHlpDBGFInfoRegister(pDevIns, "pci", "Display PCI bus status. (no arguments)", ich9pciInfo); … … 2642 2641 if (pciDevIsPassthrough(pDev)) 2643 2642 { 2644 // implementreset handler2645 AssertFailed();2643 // no reset handler - we can do what we need in PDM reset handler 2644 // @todo: is it correct? 2646 2645 } 2647 2646 else
Note:
See TracChangeset
for help on using the changeset viewer.