summaryrefslogtreecommitdiff
path: root/src/portable
diff options
context:
space:
mode:
authorcopilot-swe-agent[bot] <[email protected]>2025-10-22 05:32:08 +0000
committercopilot-swe-agent[bot] <[email protected]>2025-10-22 05:32:08 +0000
commit16cfe6895a4ee6d6b196e99a033a7326908f8d8a (patch)
tree8cb2bba872f924045b2ab676ae3ab16a345eb056 /src/portable
parentc084d36fce953e0f73ba827b0fea687a2a0601d7 (diff)
Fix duplicate is_isr parameter in dcd_dwc2.c
Co-authored-by: HiFiPhile <[email protected]>
Diffstat (limited to 'src/portable')
-rw-r--r--src/portable/synopsys/dwc2/dcd_dwc2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/portable/synopsys/dwc2/dcd_dwc2.c b/src/portable/synopsys/dwc2/dcd_dwc2.c
index f3a0ee7fc..ab30a06e8 100644
--- a/src/portable/synopsys/dwc2/dcd_dwc2.c
+++ b/src/portable/synopsys/dwc2/dcd_dwc2.c
@@ -457,7 +457,7 @@ void dcd_set_address(uint8_t rhport, uint8_t dev_addr) {
dwc2->dcfg = (dwc2->dcfg & ~DCFG_DAD_Msk) | (dev_addr << DCFG_DAD_Pos);
// Response with status after changing device address
- dcd_edpt_xfer(rhport, tu_edpt_addr(0, TUSB_DIR_IN), NULL, 0, false, false);
+ dcd_edpt_xfer(rhport, tu_edpt_addr(0, TUSB_DIR_IN), NULL, 0, false);
}
void dcd_remote_wakeup(uint8_t rhport) {