Changeset 39136 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Oct 28, 2011 10:13:34 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r39135 r39136 4640 4640 if (pState->fR0Enabled) 4641 4641 { 4642 rc = PDMDevHlpMMIORegisterR0(pPciDev->pDevIns, GCPhysAddress, cb, 0,4643 "e1kMMIOWrite", "e1kMMIORead" , NULL);4642 rc = PDMDevHlpMMIORegisterR0(pPciDev->pDevIns, GCPhysAddress, cb, NIL_RTR0PTR /*pvUser*/, 4643 "e1kMMIOWrite", "e1kMMIORead"); 4644 4644 if (RT_FAILURE(rc)) 4645 4645 break; … … 4647 4647 if (pState->fGCEnabled) 4648 4648 { 4649 rc = PDMDevHlpMMIORegisterRC(pPciDev->pDevIns, GCPhysAddress, cb, 0,4650 "e1kMMIOWrite", "e1kMMIORead" , NULL);4649 rc = PDMDevHlpMMIORegisterRC(pPciDev->pDevIns, GCPhysAddress, cb, NIL_RTRCPTR /*pvUser*/, 4650 "e1kMMIOWrite", "e1kMMIORead"); 4651 4651 } 4652 4652 break;
Note:
See TracChangeset
for help on using the changeset viewer.