Changeset 39136 in vbox for trunk/src/VBox/Devices/Graphics/DevVGA.cpp
- Timestamp:
- Oct 28, 2011 10:13:34 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r39135 r39136 5990 5990 if (pThis->fGCEnabled) 5991 5991 { 5992 rc = PDMDevHlpMMIORegisterRC(pDevIns, 0x000a0000, 0x00020000, 0, "vgaMMIOWrite", "vgaMMIORead", "vgaMMIOFill"); 5992 rc = PDMDevHlpMMIORegisterRCEx(pDevIns, 0x000a0000, 0x00020000, NIL_RTRCPTR /*pvUser*/, 5993 "vgaMMIOWrite", "vgaMMIORead", "vgaMMIOFill"); 5993 5994 if (RT_FAILURE(rc)) 5994 5995 return rc; … … 5996 5997 if (pThis->fR0Enabled) 5997 5998 { 5998 rc = PDMDevHlpMMIORegisterR0(pDevIns, 0x000a0000, 0x00020000, 0, "vgaMMIOWrite", "vgaMMIORead", "vgaMMIOFill"); 5999 rc = PDMDevHlpMMIORegisterR0Ex(pDevIns, 0x000a0000, 0x00020000, NIL_RTR0PTR /*pvUser*/, 6000 "vgaMMIOWrite", "vgaMMIORead", "vgaMMIOFill"); 5999 6001 if (RT_FAILURE(rc)) 6000 6002 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.