diff options
Diffstat (limited to 'drivers/usb/renesas_usbhs/fifo.c')
-rw-r--r-- | drivers/usb/renesas_usbhs/fifo.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/usb/renesas_usbhs/fifo.c b/drivers/usb/renesas_usbhs/fifo.c index 72339bd6fcab..7b4309339f3d 100644 --- a/drivers/usb/renesas_usbhs/fifo.c +++ b/drivers/usb/renesas_usbhs/fifo.c | |||
@@ -783,9 +783,8 @@ static void usbhsf_dma_prepare_tasklet(unsigned long data) | |||
783 | sg_dma_address(&sg) = pkt->dma + pkt->actual; | 783 | sg_dma_address(&sg) = pkt->dma + pkt->actual; |
784 | sg_dma_len(&sg) = pkt->trans; | 784 | sg_dma_len(&sg) = pkt->trans; |
785 | 785 | ||
786 | desc = chan->device->device_prep_slave_sg(chan, &sg, 1, dir, | 786 | desc = dmaengine_prep_slave_sg(chan, &sg, 1, dir, |
787 | DMA_PREP_INTERRUPT | | 787 | DMA_PREP_INTERRUPT | DMA_CTRL_ACK); |
788 | DMA_CTRL_ACK); | ||
789 | if (!desc) | 788 | if (!desc) |
790 | return; | 789 | return; |
791 | 790 | ||