Changeset 27290 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Mar 11, 2010 4:40:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/DevOHCI.cpp
r26970 r27290 4756 4756 return rc; 4757 4757 4758 # if 1 /* this enabled / disabled GC stuff */4758 # if 1 /* this enabled / disabled GC/R0 stuff */ 4759 4759 rc = PDMDevHlpMMIORegisterRC(pOhci->CTX_SUFF(pDevIns), 4760 4760 GCPhysAddress, … … 4766 4766 if (RT_FAILURE(rc)) 4767 4767 return rc; 4768 4769 rc = PDMDevHlpMMIORegisterR0(pOhci->CTX_SUFF(pDevIns), 4770 GCPhysAddress, 4771 cb, 4772 0, 4773 "ohciWrite", 4774 "ohciRead", 4775 NULL); 4776 if (RT_FAILURE(rc)) 4777 return rc; 4778 4768 4779 # endif 4769 /** @todo OHCI should register R0 MMIO! (See defect #1626 comment 4.) */4770 4780 4771 4781 pOhci->MMIOBase = GCPhysAddress; … … 5398 5408 "OHCI USB controller.\n", 5399 5409 /* fFlags */ 5400 PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RC , /** @todo port OHCI to Ring-0 */5410 PDM_DEVREG_FLAGS_DEFAULT_BITS | PDM_DEVREG_FLAGS_RC | PDM_DEVREG_FLAGS_R0, 5401 5411 /* fClass */ 5402 5412 PDM_DEVREG_CLASS_BUS_USB,
Note:
See TracChangeset
for help on using the changeset viewer.