Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13fa2e69 authored by Felipe Balbi's avatar Felipe Balbi
Browse files

usb: dwc3: gadget: disable XFER_NOT_READY



We don't need this IRQ anymore for interrupt or bulk
endpoints.

Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 55a0237f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -485,8 +485,10 @@ static int dwc3_gadget_set_ep_config(struct dwc3 *dwc, struct dwc3_ep *dep,
		params.param2 |= dep->saved_state;
	}

	params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN
		| DWC3_DEPCFG_XFER_NOT_READY_EN;
	params.param1 = DWC3_DEPCFG_XFER_COMPLETE_EN;

	if (dep->number <= 1 || usb_endpoint_xfer_isoc(desc))
		params.param1 |= DWC3_DEPCFG_XFER_NOT_READY_EN;

	if (usb_ss_max_streams(comp_desc) && usb_endpoint_xfer_bulk(desc)) {
		params.param1 |= DWC3_DEPCFG_STREAM_CAPABLE