mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-10 04:21:45 +00:00
usb: Invalidate cache on ep1_out_reading_finish
This commit is contained in:
parent
4fc420616d
commit
1111125aab
2 changed files with 6 additions and 4 deletions
|
@ -930,10 +930,10 @@ out:
|
|||
_usbd_mark_ep_complete(endpoint);
|
||||
else if (_usbd_get_ep_status(endpoint) != USB_EP_STATUS_IDLE)
|
||||
res = 26;
|
||||
}
|
||||
|
||||
if (direction == USB_XFER_DIR_OUT)
|
||||
bpmp_mmu_maintenance(BPMP_MMU_MAINT_CLN_INV_WAY, false);
|
||||
if (direction == USB_XFER_DIR_OUT)
|
||||
bpmp_mmu_maintenance(BPMP_MMU_MAINT_CLN_INV_WAY, false);
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
@ -1565,6 +1565,8 @@ int usb_device_ep1_out_reading_finish(u32 *pending_bytes)
|
|||
|
||||
*pending_bytes = _usbd_get_ep1_out_bytes_read();
|
||||
|
||||
bpmp_mmu_maintenance(BPMP_MMU_MAINT_CLN_INV_WAY, false);
|
||||
|
||||
if (ep_status == USB_EP_STATUS_IDLE)
|
||||
return 0;
|
||||
else if (ep_status == USB_EP_STATUS_DISABLED)
|
||||
|
|
Loading…
Reference in a new issue