diff options
| author | Nathan Conrad <[email protected]> | 2019-09-13 23:52:43 -0400 |
|---|---|---|
| committer | Nathan Conrad <[email protected]> | 2019-09-17 13:29:40 -0400 |
| commit | 1ceeab2702c6f5407c00dab8deeade338d176a45 (patch) | |
| tree | b118ca3311a36217fab51dc39c29f536094a605c | |
| parent | 8d05b70a72d8132eb67523c789499cd4cdf5d562 (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); |
