summaryrefslogtreecommitdiff
path: root/src/portable/ehci
diff options
context:
space:
mode:
authorIngHK <[email protected]>2023-11-24 22:02:58 +0100
committerIngHK <[email protected]>2023-11-24 22:02:58 +0100
commit7e1fe2ff83e1089a1e75e4fdc03af4b0aa6048ea (patch)
tree8f5a3aa67b5067b83172c277e559cc1873c26900 /src/portable/ehci
parenta973887399e5bb33039ddddaf43136b63fe28776 (diff)
made log line end consistent \r\n
Diffstat (limited to 'src/portable/ehci')
-rw-r--r--src/portable/ehci/ehci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/portable/ehci/ehci.c b/src/portable/ehci/ehci.c
index 572b9826c..e145cbb1b 100644
--- a/src/portable/ehci/ehci.c
+++ b/src/portable/ehci/ehci.c
@@ -581,7 +581,7 @@ void qhd_xfer_complete_isr(ehci_qhd_t * qhd) {
// clear halted bit if not caused by STALL to allow more transfer
xfer_result = XFER_RESULT_FAILED;
qtd_overlay->halted = false;
- TU_LOG3(" QHD xfer err count: %d\n", qtd_overlay->err_count);
+ TU_LOG3(" QHD xfer err count: %d\r\n", qtd_overlay->err_count);
// TU_BREAKPOINT(); // TODO skip unplugged device
}else {
// no error bits are set, endpoint is halted due to STALL
@@ -664,7 +664,7 @@ void hcd_int_handler(uint8_t rhport, bool in_isr) {
if (int_status & EHCI_INT_MASK_HC_HALTED) {
// something seriously wrong, maybe forget to flush/invalidate cache
TU_BREAKPOINT();
- TU_LOG1(" HC halted\n");
+ TU_LOG1(" HC halted\r\n");
return;
}