Changeset 104590 in vbox for trunk/src/VBox/Devices/USB/darwin
- Timestamp:
- May 13, 2024 12:16:21 PM (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/darwin/USBProxyDevice-darwin.cpp
r104504 r104590 838 838 839 839 /** @todo sort or hash these for speedy lookup... */ 840 return VINF_SUCCESS;840 return rc; 841 841 } 842 842 … … 1351 1351 } 1352 1352 } 1353 vrc = VERR_VUSB_DEVICE_NOT_ATTACHED; 1353 else 1354 vrc = VERR_VUSB_DEVICE_NOT_ATTACHED; 1354 1355 } 1355 1356 else … … 1437 1438 1438 1439 IOReturn irc = (*pDevOsX->ppDevI)->ResetDevice(pDevOsX->ppDevI); 1440 AssertLogRelMsg(irc == kIOReturnSuccess || irc == kIOReturnNoDevice, 1441 ("USB: ResetDevice -> %#x\n", irc)); 1439 1442 1440 1443 irc = (*pDevOsX->ppDevI)->USBDeviceClose(pDevOsX->ppDevI); … … 1815 1818 /* try again... */ 1816 1819 irc = (*pIf->ppIfI)->GetBusFrameNumber(pIf->ppIfI, &FrameNo, &FrameTime); 1820 AssertMsg(irc == kIOReturnSuccess, ("GetBusFrameNumber -> %#x\n", irc)); 1817 1821 if (FrameNo <= pPipe->u64NextFrameNo) 1818 1822 FrameNo = pPipe->u64NextFrameNo;
Note:
See TracChangeset
for help on using the changeset viewer.