summaryrefslogtreecommitdiff
path: root/src/device/usbd.c
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2021-06-10 17:42:43 +0700
committerGitHub <[email protected]>2021-06-10 17:42:43 +0700
commitb34724215bea28ef93fd80ed9c2e4ddc87874093 (patch)
tree8cb3da6aeb0a44da34d0663e540e0a706311b308 /src/device/usbd.c
parent3c4ab6bd8adaa20d1fe0c417761d2810456dbcbd (diff)
parentc9d66dcd5f82b138865bbb02486fe19e4a843eb2 (diff)
Merge pull request #887 from hathach/host-update
Host API clean up
Diffstat (limited to 'src/device/usbd.c')
-rw-r--r--src/device/usbd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c
index 71c5d4e6c..2935defd0 100644
--- a/src/device/usbd.c
+++ b/src/device/usbd.c
@@ -1248,8 +1248,8 @@ bool usbd_edpt_xfer(uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t
// Attempt to transfer on a busy endpoint, sound like an race condition !
TU_ASSERT(_usbd_dev.ep_status[epnum][dir].busy == 0);
- // Set busy first since the actual transfer can be complete before dcd_edpt_xfer() could return
- // and usbd task can preempt and clear the busy
+ // Set busy first since the actual transfer can be complete before dcd_edpt_xfer()
+ // could return and USBD task can preempt and clear the busy
_usbd_dev.ep_status[epnum][dir].busy = true;
if ( dcd_edpt_xfer(rhport, ep_addr, buffer, total_bytes) )