Changeset 81704 in vbox for trunk/src/VBox
- Timestamp:
- Nov 6, 2019 11:53:51 AM (5 years ago)
- Location:
- trunk/src/VBox/Devices/Bus
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r81624 r81704 1041 1041 DECLCALLBACK(int) devpciR3CommonIORegionRegister(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion, 1042 1042 RTGCPHYS cbRegion, PCIADDRESSSPACE enmType, uint32_t fFlags, 1043 uint64_t hHandle, PFNPCIIOREGIONMAP pfn Callback)1043 uint64_t hHandle, PFNPCIIOREGIONMAP pfnMapUnmap) 1044 1044 { 1045 1045 LogFunc(("%s: region #%u size %RGp type %x fFlags=%#x hHandle=%#RX64\n", … … 1089 1089 pRegion->hHandle = hHandle; 1090 1090 pRegion->type = enmType; 1091 pRegion->pfnMap = pfn Callback;1091 pRegion->pfnMap = pfnMapUnmap; 1092 1092 1093 1093 if ((enmType & PCI_ADDRESS_SPACE_BAR64) != 0) -
trunk/src/VBox/Devices/Bus/DevPciInternal.h
r81375 r81704 212 212 DECLCALLBACK(int) devpciR3CommonIORegionRegister(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, uint32_t iRegion, 213 213 RTGCPHYS cbRegion, PCIADDRESSSPACE enmType, uint32_t fFlags, 214 uint64_t hHandle, PFNPCIIOREGIONMAP pfn Callback);214 uint64_t hHandle, PFNPCIIOREGIONMAP pfnMapUnmap); 215 215 DECLCALLBACK(void) devpciR3CommonInterceptConfigAccesses(PPDMDEVINS pDevIns, PPDMPCIDEV pPciDev, 216 216 PFNPCICONFIGREAD pfnRead, PFNPCICONFIGWRITE pfnWrite);
Note:
See TracChangeset
for help on using the changeset viewer.