Changeset 63562 in vbox for trunk/src/VBox/Devices/USB/linux
- Timestamp:
- Aug 16, 2016 2:04:03 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110217
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/USB/linux/USBProxyDevice-linux.cpp
r63459 r63562 1379 1379 AssertMsgFailed(("We can't split isochronous URBs!\n")); 1380 1380 usbProxyLinuxUrbFree(pProxyDev, pUrbLnx); 1381 return VERR_INVALID_PARAMETER; /** @todo :Better status code. */1381 return VERR_INVALID_PARAMETER; /** @todo Better status code. */ 1382 1382 } 1383 1383 pUrbLnx->KUrb.endpoint = pUrb->EndPt; … … 1520 1520 break; 1521 1521 default: 1522 rc = VERR_INVALID_PARAMETER; /** @todo :better status code. */1522 rc = VERR_INVALID_PARAMETER; /** @todo better status code. */ 1523 1523 } 1524 1524 … … 1889 1889 if (errno == ENODEV) 1890 1890 break; 1891 /** @todo :Think about how to handle errors wrt. to the status code. */1891 /** @todo Think about how to handle errors wrt. to the status code. */ 1892 1892 Log(("usb-linux: Discard URB %p failed, errno=%d. pProxyDev=%s!!! (split)\n", 1893 1893 pUrb, errno, usbProxyGetName(pProxyDev)));
Note:
See TracChangeset
for help on using the changeset viewer.