Changeset 44902 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Mar 2, 2013 2:28:37 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r44898 r44902 1357 1357 PDMDEV_ASSERT_DEVINS(pDevIns); 1358 1358 1359 #ifndef PDM_DO_NOT_RESPECT_PCI_BM_BIT 1359 1360 /* 1360 1361 * Just check the busmaster setting here and forward the request to the generic read helper. … … 1369 1370 return VERR_PDM_NOT_PCI_BUS_MASTER; 1370 1371 } 1372 #endif 1371 1373 1372 1374 return pDevIns->pHlpR3->pfnPhysRead(pDevIns, GCPhys, pvBuf, cbRead); … … 1379 1381 PDMDEV_ASSERT_DEVINS(pDevIns); 1380 1382 1383 #ifndef PDM_DO_NOT_RESPECT_PCI_BM_BIT 1381 1384 /* 1382 1385 * Just check the busmaster setting here and forward the request to the generic read helper. … … 1391 1394 return VERR_PDM_NOT_PCI_BUS_MASTER; 1392 1395 } 1396 #endif 1393 1397 1394 1398 return pDevIns->pHlpR3->pfnPhysWrite(pDevIns, GCPhys, pvBuf, cbWrite);
Note:
See TracChangeset
for help on using the changeset viewer.