Changeset 11224 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Aug 7, 2008 6:25:15 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r11192 r11224 1483 1483 1484 1484 PciBusReg.u32Version = PDM_PCIBUSREG_VERSION; 1485 PciBusReg.pfnRegister HC= pciRegister;1486 PciBusReg.pfnIORegionRegister HC= pciIORegionRegister;1487 PciBusReg.pfnSetConfigCallbacks HC= pciSetConfigCallbacks;1488 PciBusReg.pfnSetIrq HC= pciSetIrq;1489 PciBusReg.pfnSaveExec HC= pciGenericSaveExec;1490 PciBusReg.pfnLoadExec HC= pciGenericLoadExec;1491 PciBusReg.pfnFakePCIBIOS HC= pciFakePCIBIOS;1492 PciBusReg.pszSetIrq GC = fGCEnabled ? "pciSetIrq" : NULL;1485 PciBusReg.pfnRegisterR3 = pciRegister; 1486 PciBusReg.pfnIORegionRegisterR3 = pciIORegionRegister; 1487 PciBusReg.pfnSetConfigCallbacksR3 = pciSetConfigCallbacks; 1488 PciBusReg.pfnSetIrqR3 = pciSetIrq; 1489 PciBusReg.pfnSaveExecR3 = pciGenericSaveExec; 1490 PciBusReg.pfnLoadExecR3 = pciGenericLoadExec; 1491 PciBusReg.pfnFakePCIBIOSR3 = pciFakePCIBIOS; 1492 PciBusReg.pszSetIrqRC = fGCEnabled ? "pciSetIrq" : NULL; 1493 1493 PciBusReg.pszSetIrqR0 = fR0Enabled ? "pciSetIrq" : NULL; 1494 1494 rc = pDevIns->pDevHlp->pfnPCIBusRegister(pDevIns, &PciBusReg, &pBus->pPciHlpR3);
Note:
See TracChangeset
for help on using the changeset viewer.