Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/portable/synopsys/dwc2/dcd_dwc2.c
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,12 @@ bool dcd_init(uint8_t rhport, const tusb_rhport_init_t* rh_init) {
return true;
}

bool dcd_deinit(uint8_t rhport) {
(void) rhport;
// TODO: stub for the deinit function
return true;
}

void dcd_int_enable(uint8_t rhport) {
dwc2_dcd_int_enable(rhport);
}
Expand Down