Changeset 81774 in vbox
- Timestamp:
- Nov 11, 2019 6:09:10 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r81773 r81774 5521 5521 PLSILOGICSCSI pThis = PDMDEVINS_2_DATA(pDevIns, PLSILOGICSCSI); 5522 5522 5523 int rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->hIoPortsReg, lsilogicIOPortWrite, lsilogicIOPortRead, NULL /*pvUser*/); 5523 /* Replicate the critsect configuration: */ 5524 int rc = PDMDevHlpSetDeviceCritSect(pDevIns, PDMDevHlpCritSectGetNop(pDevIns)); 5525 AssertRCReturn(rc, rc); 5526 5527 /* Setup callbacks for this context: */ 5528 rc = PDMDevHlpIoPortSetUpContext(pDevIns, pThis->hIoPortsReg, lsilogicIOPortWrite, lsilogicIOPortRead, NULL /*pvUser*/); 5524 5529 AssertRCReturn(rc, rc); 5525 5530
Note:
See TracChangeset
for help on using the changeset viewer.