Changeset 63239 in vbox for trunk/src/VBox/Main/src-client/UsbCardReader.cpp
- Timestamp:
- Aug 10, 2016 9:39:08 AM (8 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/Main/src-client/UsbCardReader.cpp (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/UsbCardReader.cpp
r62485 r63239 429 429 void *pvUser) 430 430 { 431 RT_NOREF(pvUser); 431 432 AssertPtrReturn(pInterface, VERR_INVALID_PARAMETER); 432 433 LogFlowFunc(("ENTER: pvUser:%p\n", … … 443 444 uint32_t u32Disposition) 444 445 { 446 RT_NOREF(pvUser, u32Disposition); 445 447 AssertPtrReturn(pInterface, VERR_INVALID_PARAMETER); 446 448 LogFlowFunc(("ENTER: pvUser:%p, u32Disposition:%RX32\n", … … 599 601 static DECLCALLBACK(int) drvCardReaderThreadCmdWakeup(PPDMDRVINS pDrvIns, PPDMTHREAD pThread) 600 602 { 603 RT_NOREF(pThread); 601 604 LogFlowFunc(("ENTER: pDrvIns:%i\n", pDrvIns->iInstance)); 602 603 605 PUSBCARDREADER pThis = PDMINS_2_DATA(pDrvIns, PUSBCARDREADER); 604 606 … … 611 613 if (RT_SUCCESS(rc)) 612 614 RTReqRelease(pReq); 613 /* @todo handle VERR_TIMEOUT */615 /** @todo handle VERR_TIMEOUT */ 614 616 615 617 return rc; … … 700 702 int UsbCardReader::VRDENotify(uint32_t u32Id, void *pvData, uint32_t cbData) 701 703 { 704 RT_NOREF(cbData); 702 705 int rc = VINF_SUCCESS; 703 706 … … 764 767 int UsbCardReader::VRDEResponse(int rcRequest, void *pvUser, uint32_t u32Function, void *pvData, uint32_t cbData) 765 768 { 769 RT_NOREF(cbData); 766 770 int rc = VINF_SUCCESS; 767 771 … … 1356 1360 uint32_t u32PreferredProtocols) 1357 1361 { 1362 RT_NOREF(pszReaderName); 1358 1363 AssertReturn(pDrv == mpDrv, VERR_NOT_SUPPORTED); 1359 1364 … … 1862 1867 /* static */ DECLCALLBACK(int) UsbCardReader::drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 1863 1868 { 1869 RT_NOREF(fFlags); 1864 1870 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns); 1865 1871 LogFlowFunc(("iInstance/%d, pCfg:%p, fFlags:%x\n", pDrvIns->iInstance, pCfg, fFlags));
Note:
See TracChangeset
for help on using the changeset viewer.

