summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMengsk <[email protected]>2025-09-29 16:07:46 +0200
committerMengsk <[email protected]>2025-09-29 16:09:34 +0200
commit7281bfbfc4c19feb63c7691ce0e4f98ccaa0a143 (patch)
tree15467b7dc8e95f18f3e5dd1cbefb659c5638585d
parent30f8a9dfae7d93130c2d1aebd9f2a5dc6a96785c (diff)
Fix warning
Signed-off-by: Mengsk <[email protected]>
-rw-r--r--src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c b/src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c
index 3b9825e25..ed823a832 100644
--- a/src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c
+++ b/src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c
@@ -678,6 +678,7 @@ bool dcd_edpt_iso_alloc(uint8_t rhport, uint8_t ep_addr, uint16_t largest_packet
btable_set_addr(ep_idx, 1, pma_addr2);
#else
btable_set_addr(ep_idx, dir == TUSB_DIR_IN ? BTABLE_BUF_TX : BTABLE_BUF_RX, pma_addr);
+ (void) pma_addr2;
#endif
xfer_ctl_t* xfer = xfer_ctl_ptr(ep_num, dir);