Changeset 26157 in vbox for trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
- Timestamp:
- Feb 2, 2010 6:02:15 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57171
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevLsiLogicSCSI.cpp
r26001 r26157 3666 3666 if (pThis->fGCEnabled) 3667 3667 { 3668 rc = PDMDevHlpMMIORegister GC(pDevIns, GCPhysAddress, cb, 0,3668 rc = PDMDevHlpMMIORegisterRC(pDevIns, GCPhysAddress, cb, 0, 3669 3669 "lsilogicMMIOWrite", "lsilogicMMIORead", NULL); 3670 3670 if (RT_FAILURE(rc)) … … 3692 3692 if (pThis->fGCEnabled) 3693 3693 { 3694 rc = PDMDevHlpMMIORegister GC(pDevIns, GCPhysAddress, cb, 0,3694 rc = PDMDevHlpMMIORegisterRC(pDevIns, GCPhysAddress, cb, 0, 3695 3695 "lsilogicDiagnosticWrite", "lsilogicDiagnosticRead", NULL); 3696 3696 if (RT_FAILURE(rc)) … … 3715 3715 if (pThis->fGCEnabled) 3716 3716 { 3717 rc = PDMDevHlpIOPortRegister GC(pDevIns, (RTIOPORT)GCPhysAddress, LSILOGIC_PCI_SPACE_IO_SIZE,3717 rc = PDMDevHlpIOPortRegisterRC(pDevIns, (RTIOPORT)GCPhysAddress, LSILOGIC_PCI_SPACE_IO_SIZE, 3718 3718 0, "lsilogicIOPortWrite", "lsilogicIOPortRead", NULL, NULL, "LsiLogic"); 3719 3719 if (RT_FAILURE(rc)) … … 4501 4501 4502 4502 /* Intialize task queue. */ 4503 rc = PDMDevHlp PDMQueueCreate(pDevIns, sizeof(PDMQUEUEITEMCORE), 2, 0,4504 4503 rc = PDMDevHlpQueueCreate(pDevIns, sizeof(PDMQUEUEITEMCORE), 2, 0, 4504 lsilogicNotifyQueueConsumer, true, "LsiLogic-Task", &pThis->pNotificationQueueR3); 4505 4505 if (RT_FAILURE(rc)) 4506 4506 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.