From: Yoshihiro Shimoda Date: Thu, 10 Mar 2016 02:30:15 +0000 (+0900) Subject: usb: renesas_usbhs: disable TX IRQ before starting TX DMAC transfer X-Git-Tag: v3.16.35~65 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=288349b2b4c85107900c64f468fff4300fd05253;p=thirdparty%2Fkernel%2Fstable.git usb: renesas_usbhs: disable TX IRQ before starting TX DMAC transfer commit 6490865c67825277b29638e839850882600b48ec upstream. This patch adds a code to surely disable TX IRQ of the pipe before starting TX DMAC transfer. Otherwise, a lot of unnecessary TX IRQs may happen in rare cases when DMAC is used. Fixes: e73a989 ("usb: renesas_usbhs: add DMAEngine support") Signed-off-by: Yoshihiro Shimoda Signed-off-by: Felipe Balbi Signed-off-by: Ben Hutchings --- diff --git a/drivers/usb/renesas_usbhs/fifo.c b/drivers/usb/renesas_usbhs/fifo.c index 6c696b836145c..50763ebff0159 100644 --- a/drivers/usb/renesas_usbhs/fifo.c +++ b/drivers/usb/renesas_usbhs/fifo.c @@ -851,6 +851,7 @@ static int usbhsf_dma_prepare_push(struct usbhs_pkt *pkt, int *is_done) pkt->trans = len; + usbhsf_tx_irq_ctrl(pipe, 0); INIT_WORK(&pkt->work, xfer_work); schedule_work(&pkt->work);