Changeset 73301 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jul 22, 2018 2:33:50 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123908
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/UartCore.cpp
r73300 r73301 443 443 444 444 445 #if 0 /* unused */ 445 446 /** 446 447 * Tries to copy the requested amount of data from the provided buffer into the given FIFO. … … 471 472 return cbCopied; 472 473 } 474 #endif 473 475 474 476 … … 708 710 int rc2 = pThis->pDrvSerial->pfnDataAvailWrNotify(pThis->pDrvSerial, 1); 709 711 if (RT_FAILURE(rc2)) 710 LogRelMax(10, ("Serial#%d: Failed to send data with %Rrc\n", rc2));712 LogRelMax(10, ("Serial#%d: Failed to send data with %Rrc\n", pThis->pDevInsR3->iDevIns, rc2)); 711 713 } 712 714 #endif … … 727 729 int rc2 = pThis->pDrvSerial->pfnDataAvailWrNotify(pThis->pDrvSerial, 1); 728 730 if (RT_FAILURE(rc2)) 729 LogRelMax(10, ("Serial#%d: Failed to send data with %Rrc\n", rc2));731 LogRelMax(10, ("Serial#%d: Failed to send data with %Rrc\n", pThis->pDevInsR3->iDevIns, rc2)); 730 732 } 731 733 #endif
Note:
See TracChangeset
for help on using the changeset viewer.