Changeset 64357 in vbox for trunk/src/VBox
- Timestamp:
- Oct 21, 2016 1:43:40 PM (8 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/GIMDev/GIMDev.cpp
r64115 r64357 340 340 for (uint32_t i = 0; i < cRegions; i++, pCur++) 341 341 { 342 int rc = PDMDevHlpMMIOExDeregister(pDevIns, pCur->iRegion);342 int rc = PDMDevHlpMMIOExDeregister(pDevIns, NULL, pCur->iRegion); 343 343 if (RT_FAILURE(rc)) 344 344 return rc; -
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r64115 r64357 4418 4418 { 4419 4419 /* drop this dummy region */ 4420 rc = PDMDevHlpMMIOExDeregister(pDevIns, 2);4420 rc = PDMDevHlpMMIOExDeregister(pDevIns, NULL, 2); 4421 4421 pThis->fSharedRegion = false; 4422 4422 }
Note:
See TracChangeset
for help on using the changeset viewer.