Changeset 1855 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Apr 2, 2007 11:40:16 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 20070
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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 {
Note:
See TracChangeset
for help on using the changeset viewer.