Changeset 41847 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jun 20, 2012 1:43:46 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78676
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r41783 r41847 1063 1063 1064 1064 NOREF(pVM); 1065 } 1066 1067 1068 /** @interface_method_impl{PDMDEVHLPR3,pfnPCIDevPhysRead} */ 1069 static DECLCALLBACK(int) pdmR3DevHlp_PCIPhysRead(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead) 1070 { 1071 PDMDEV_ASSERT_DEVINS(pDevIns); 1072 return PDMDevHlpPCIDevPhysRead(pDevIns->Internal.s.pPciDeviceR3, GCPhys, pvBuf, cbRead); 1073 } 1074 1075 1076 /** @interface_method_impl{PDMDEVHLPR3,pfnPCIDevPhysWrite} */ 1077 static DECLCALLBACK(int) pdmR3DevHlp_PCIPhysWrite(PPDMDEVINS pDevIns, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite) 1078 { 1079 PDMDEV_ASSERT_DEVINS(pDevIns); 1080 return PDMDevHlpPCIDevPhysWrite(pDevIns->Internal.s.pPciDeviceR3, GCPhys, pvBuf, cbWrite); 1065 1081 } 1066 1082 … … 3344 3360 pdmR3DevHlp_STAMRegisterF, 3345 3361 pdmR3DevHlp_STAMRegisterV, 3362 pdmR3DevHlp_PCIPhysRead, 3363 pdmR3DevHlp_PCIPhysWrite, 3346 3364 pdmR3DevHlp_PCIRegister, 3347 3365 pdmR3DevHlp_PCIRegisterMsi, … … 3563 3581 pdmR3DevHlp_STAMRegisterF, 3564 3582 pdmR3DevHlp_STAMRegisterV, 3583 pdmR3DevHlp_PCIPhysRead, 3584 pdmR3DevHlp_PCIPhysWrite, 3565 3585 pdmR3DevHlp_PCIRegister, 3566 3586 pdmR3DevHlp_PCIRegisterMsi,
Note:
See TracChangeset
for help on using the changeset viewer.