- Timestamp:
- Apr 2, 2007 11:40:16 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20070
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/pckbd.c
r481 r1855 1493 1493 /* LUN #0: keyboard */ 1494 1494 case 0: 1495 rc = pDevIns->pDevHlp->pfnDriverAttach(pDevIns, iLUN, &pData->Keyboard.Base, &pData->Keyboard.pDrvBase, "Keyboard Port");1495 rc = PDMDevHlpDriverAttach(pDevIns, iLUN, &pData->Keyboard.Base, &pData->Keyboard.pDrvBase, "Keyboard Port"); 1496 1496 if (VBOX_SUCCESS(rc)) 1497 1497 { … … 1514 1514 /* LUN #1: aux/mouse */ 1515 1515 case 1: 1516 rc = pDevIns->pDevHlp->pfnDriverAttach(pDevIns, iLUN, &pData->Mouse.Base, &pData->Mouse.pDrvBase, "Aux (Mouse) Port");1516 rc = PDMDevHlpDriverAttach(pDevIns, iLUN, &pData->Mouse.Base, &pData->Mouse.pDrvBase, "Aux (Mouse) Port"); 1517 1517 if (VBOX_SUCCESS(rc)) 1518 1518 { -
trunk/src/VBox/Devices/Network/ne2000.c
r1 r1855 1340 1340 * Attach status driver (optional). 1341 1341 */ 1342 rc = pDevIns->pDevHlp->pfnDriverAttach(pDevIns, PDM_STATUS_LUN, &pData->IBase, &pBase, "Status Port");1342 rc = PDMDevHlpDriverAttach(pDevIns, PDM_STATUS_LUN, &pData->IBase, &pBase, "Status Port"); 1343 1343 if (VBOX_SUCCESS(rc)) 1344 1344 pData->pLedsConnector = pBase->pfnQueryInterface(pBase, PDMINTERFACE_LED_CONNECTORS); … … 1352 1352 * Attach driver. 1353 1353 */ 1354 rc = pDevIns->pDevHlp->pfnDriverAttach(pDevIns, 0, &pData->IBase, &pData->pDrvBase, "Network Port");1354 rc = PDMDevHlpDriverAttach(pDevIns, 0, &pData->IBase, &pData->pDrvBase, "Network Port"); 1355 1355 if (VBOX_SUCCESS(rc)) 1356 1356 { -
trunk/src/VBox/Devices/Storage/fdc.c
r1 r1855 2614 2614 * Try attach the block device and get the interfaces. 2615 2615 */ 2616 rc = pDevIns->pDevHlp->pfnDriverAttach ( 2617 pDevIns, 2618 drv->iLUN, 2619 &drv->IBase, 2620 &drv->pDrvBase, 2621 descs[drv->iLUN] 2622 ); 2616 rc = PDMDevHlpDriverAttach (pDevIns, drv->iLUN, &drv->IBase, &drv->pDrvBase, descs[drv->iLUN]); 2623 2617 if (VBOX_SUCCESS (rc)) 2624 2618 { … … 2977 2971 * Attach the status port (optional). 2978 2972 */ 2979 rc = pDevIns->pDevHlp->pfnDriverAttach ( 2980 pDevIns, 2981 PDM_STATUS_LUN, 2982 &fdctrl->IBaseStatus, 2983 &pBase, 2984 "Status Port"); 2973 rc = PDMDevHlpDriverAttach (pDevIns, PDM_STATUS_LUN, &fdctrl->IBaseStatus, &pBase, "Status Port"); 2985 2974 if (VBOX_SUCCESS (rc)) { 2986 2975 fdctrl->pLedsConnector =
Note:
See TracChangeset
for help on using the changeset viewer.