diff options
| author | Nathan Conrad <[email protected]> | 2019-09-13 23:52:43 -0400 |
|---|---|---|
| committer | Nathan Conrad <[email protected]> | 2019-09-13 23:52:43 -0400 |
| commit | 4ea212a432c32dedfefa79d995d2190462a27a5f (patch) | |
| tree | dafcfccaf77e846401bedd5df485ef712e4bb5ef | |
| parent | c831311a12a42d27690c830cc9cefd4d4e6efe2d (diff) | |
This demonstrates that I don't pre-build things before committing them... oops.
| -rw-r--r-- | src/portable/st/synopsys/dcd_synopsys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/portable/st/synopsys/dcd_synopsys.c b/src/portable/st/synopsys/dcd_synopsys.c index 2daa16a26..f15b92edc 100644 --- a/src/portable/st/synopsys/dcd_synopsys.c +++ b/src/portable/st/synopsys/dcd_synopsys.c @@ -269,7 +269,7 @@ bool dcd_edpt_open (uint8_t rhport, tusb_desc_endpoint_t const * desc_edpt) uint8_t const epnum = tu_edpt_number(desc_edpt->bEndpointAddress); uint8_t const dir = tu_edpt_dir(desc_edpt->bEndpointAddress); - TU_ASSERT((desc_edpt->wMaxPacketSize.size <= 64); + TU_ASSERT(desc_edpt->wMaxPacketSize.size <= 64); TU_ASSERT(epnum < EP_MAX); xfer_ctl_t * xfer = XFER_CTL_BASE(epnum, dir); |
