Makefile (d4bbf7e7759afc172e2bfbc5c416324590049cdd) | Makefile (2e7fc3ba68e28acbcc9f4ee753be12be84533ba2) |
---|---|
1# 2# for USB OTG silicon based on Mentor Graphics INVENTRA designs 3# 4 5obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o 6 7musb_hdrc-y := musb_core.o 8 --- 10 unchanged lines hidden (view full) --- 19obj-$(CONFIG_USB_MUSB_BLACKFIN) += blackfin.o 20obj-$(CONFIG_USB_MUSB_UX500) += ux500.o 21 22# the kconfig must guarantee that only one of the 23# possible I/O schemes will be enabled at a time ... 24# PIO only, or DMA (several potential schemes). 25# though PIO is always there to back up DMA, and for ep0 26 | 1# 2# for USB OTG silicon based on Mentor Graphics INVENTRA designs 3# 4 5obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o 6 7musb_hdrc-y := musb_core.o 8 --- 10 unchanged lines hidden (view full) --- 19obj-$(CONFIG_USB_MUSB_BLACKFIN) += blackfin.o 20obj-$(CONFIG_USB_MUSB_UX500) += ux500.o 21 22# the kconfig must guarantee that only one of the 23# possible I/O schemes will be enabled at a time ... 24# PIO only, or DMA (several potential schemes). 25# though PIO is always there to back up DMA, and for ep0 26 |
27ifneq ($(CONFIG_MUSB_PIO_ONLY),y) 28 29 ifeq ($(CONFIG_USB_INVENTRA_DMA),y) 30 musb_hdrc-y += musbhsdma.o 31 32 else 33 ifeq ($(CONFIG_USB_TI_CPPI_DMA),y) 34 musb_hdrc-y += cppi_dma.o 35 36 else 37 ifeq ($(CONFIG_USB_TUSB_OMAP_DMA),y) 38 musb_hdrc-y += tusb6010_omap.o 39 40 else 41 ifeq ($(CONFIG_USB_UX500_DMA),y) 42 musb_hdrc-y += ux500_dma.o 43 44 endif 45 endif 46 endif 47 endif 48endif | 27musb_hdrc-$(CONFIG_USB_INVENTRA_DMA) += musbhsdma.o 28musb_hdrc-$(CONFIG_USB_TI_CPPI_DMA) += cppi_dma.o 29musb_hdrc-$(CONFIG_USB_TUSB_OMAP_DMA) += tusb6010_omap.o 30musb_hdrc-$(CONFIG_USB_UX500_DMA) += ux500_dma.o |