Merge pull request #3063 from maximevince/dwc2-host-fix-sof-flag

dwc2/host: clear SOF flag in handle_sof_irq()
This commit is contained in:
HiFiPhile
2025-04-06 14:05:28 +02:00
committed by GitHub

View File

@@ -1182,6 +1182,7 @@ static void handle_channel_irq(uint8_t rhport, bool in_isr) {
static bool handle_sof_irq(uint8_t rhport, bool in_isr) {
(void) in_isr;
dwc2_regs_t* dwc2 = DWC2_REG(rhport);
dwc2->gintsts = GINTSTS_SOF; // Clear the SOF interrupt flag
bool more_isr = false;