aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb/musb_dsps.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/musb/musb_dsps.c')
-rw-r--r--drivers/usb/musb/musb_dsps.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_dsps.c b/drivers/usb/musb/musb_dsps.c
index 65d931a28a14..1334a3de31b8 100644
--- a/drivers/usb/musb/musb_dsps.c
+++ b/drivers/usb/musb/musb_dsps.c
@@ -634,10 +634,14 @@ static void dsps_read_fifo32(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
634} 634}
635 635
636static struct musb_platform_ops dsps_ops = { 636static struct musb_platform_ops dsps_ops = {
637 .quirks = MUSB_INDEXED_EP, 637 .quirks = MUSB_DMA_CPPI41 | MUSB_INDEXED_EP,
638 .init = dsps_musb_init, 638 .init = dsps_musb_init,
639 .exit = dsps_musb_exit, 639 .exit = dsps_musb_exit,
640 640
641#ifdef CONFIG_USB_TI_CPPI41_DMA
642 .dma_init = cppi41_dma_controller_create,
643 .dma_exit = cppi41_dma_controller_destroy,
644#endif
641 .enable = dsps_musb_enable, 645 .enable = dsps_musb_enable,
642 .disable = dsps_musb_disable, 646 .disable = dsps_musb_disable,
643 647