summaryrefslogtreecommitdiff
path: root/src/device
diff options
context:
space:
mode:
authorhathach <[email protected]>2025-12-10 18:51:44 +0700
committerhathach <[email protected]>2025-12-10 18:51:44 +0700
commit0a1bf62a2dbcec88232643e99898529407b5c6a5 (patch)
tree1dfdd0e5001aed67cdcee431b822af8bad6e2182 /src/device
parent8d0fda879b68e0d5f905590ec1ae5124e4054e48 (diff)
parent098dd07ecd204c47c6fa72b078b085d16413f48c (diff)
Merge branch 'master' into more-size-reduce-edpt-stream
Diffstat (limited to 'src/device')
-rw-r--r--src/device/usbd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c
index 5e7d0ffa7..b033ac4c0 100644
--- a/src/device/usbd.c
+++ b/src/device/usbd.c
@@ -1480,7 +1480,7 @@ bool usbd_edpt_xfer_fifo(uint8_t rhport, uint8_t ep_addr, tu_fifo_t* ff, uint16_
uint8_t const epnum = tu_edpt_number(ep_addr);
uint8_t const dir = tu_edpt_dir(ep_addr);
- TU_LOG_USBD(" Queue ISO EP %02X with %u bytes ... ", ep_addr, total_bytes);
+ TU_LOG_USBD(" Queue FIFO EP %02X with %u bytes ... ", ep_addr, total_bytes);
// Attempt to transfer on a busy endpoint, sound like a race condition !
TU_ASSERT(_usbd_dev.ep_status[epnum][dir].busy == 0);