Changeset 51377 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- May 23, 2014 5:03:39 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93886
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r50654 r51377 200 200 PDMBOTHCBDECL(void) ich9pciSetIrq(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, int iIrq, int iLevel, uint32_t uTagSrc) 201 201 { 202 LogFlowFunc(("invoked by %p/%d: iIrq=%d iLevel=%d uTagSrc=%#x\n", pDevIns, pDevIns->iInstance, iIrq, iLevel, uTagSrc)); 202 203 ich9pciSetIrqInternal(PDMINS_2_DATA(pDevIns, PICH9PCIGLOBALS), pPciDev->devfn, pPciDev, iIrq, iLevel, uTagSrc); 203 204 } … … 612 613 if (MsiIsEnabled(pPciDev)) 613 614 { 615 LogFlowFunc(("PCI Dev %p : MSI\n", pPciDev)); 614 616 PPDMDEVINS pDevIns = pGlobals->aPciBus.CTX_SUFF(pDevIns); 615 617 MsiNotify(pDevIns, pGlobals->aPciBus.CTX_SUFF(pPciHlp), pPciDev, iIrq, iLevel, uTagSrc); … … 618 620 if (MsixIsEnabled(pPciDev)) 619 621 { 622 LogFlowFunc(("PCI Dev %p : MSI-X\n", pPciDev)); 620 623 PPDMDEVINS pDevIns = pGlobals->aPciBus.CTX_SUFF(pDevIns); 621 624 MsixNotify(pDevIns, pGlobals->aPciBus.CTX_SUFF(pPciHlp), pPciDev, iIrq, iLevel, uTagSrc); … … 627 630 const bool fIsAcpiDevice = PCIDevGetDeviceId(pPciDev) == 0x7113; 628 631 632 LogFlowFunc(("PCI Dev %p : IRQ\n", pPciDev)); 629 633 /* Check if the state changed. */ 630 634 if (pPciDev->Int.s.uIrqPinState != iLevel)
Note:
See TracChangeset
for help on using the changeset viewer.