Changeset 37795 in vbox for trunk/src/VBox/Devices/Input
- Timestamp:
- Jul 6, 2011 10:28:24 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72671
- Location:
- trunk/src/VBox/Devices/Input
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/UsbKbd.cpp
r37388 r37795 1425 1425 * Attach the keyboard driver. 1426 1426 */ 1427 rc = pUsbIns->pHlpR3->pfnDriverAttach(pUsbIns, 0 /*iLun*/, &pThis->Lun0.IBase, &pThis->Lun0.pDrvBase, "Keyboard Port");1427 rc = PDMUsbHlpDriverAttach(pUsbIns, 0 /*iLun*/, &pThis->Lun0.IBase, &pThis->Lun0.pDrvBase, "Keyboard Port"); 1428 1428 if (RT_FAILURE(rc)) 1429 1429 return PDMUsbHlpVMSetError(pUsbIns, rc, RT_SRC_POS, N_("HID failed to attach keyboard driver")); -
trunk/src/VBox/Devices/Input/UsbMouse.cpp
r37788 r37795 1301 1301 * Attach the mouse driver. 1302 1302 */ 1303 rc = pUsbIns->pHlpR3->pfnDriverAttach(pUsbIns, 0 /*iLun*/, &pThis->Lun0.IBase, &pThis->Lun0.pDrvBase, "Mouse Port");1303 rc = PDMUsbHlpDriverAttach(pUsbIns, 0 /*iLun*/, &pThis->Lun0.IBase, &pThis->Lun0.pDrvBase, "Mouse Port"); 1304 1304 if (RT_FAILURE(rc)) 1305 1305 return PDMUsbHlpVMSetError(pUsbIns, rc, RT_SRC_POS, N_("HID failed to attach mouse driver"));
Note:
See TracChangeset
for help on using the changeset viewer.