Makefile (73b089b052a69020b953312a624a6e1eb5b81fab) | Makefile (8ceae51ed5d1739d4ed5c4b947d12ff1d7df0e89) |
---|---|
1# 2# for USB OTG silicon based on Mentor Graphics INVENTRA designs 3# 4 5ccflags-$(CONFIG_USB_MUSB_DEBUG) := -DDEBUG 6 7obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o 8 9musb_hdrc-y := musb_core.o 10 11musb_hdrc-$(CONFIG_USB_GADGET_MUSB_HDRC) += musb_gadget_ep0.o musb_gadget.o 12musb_hdrc-$(CONFIG_USB_MUSB_HDRC_HCD) += musb_virthub.o musb_host.o 13musb_hdrc-$(CONFIG_DEBUG_FS) += musb_debugfs.o 14 15# Hardware Glue Layer 16 | 1# 2# for USB OTG silicon based on Mentor Graphics INVENTRA designs 3# 4 5ccflags-$(CONFIG_USB_MUSB_DEBUG) := -DDEBUG 6 7obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o 8 9musb_hdrc-y := musb_core.o 10 11musb_hdrc-$(CONFIG_USB_GADGET_MUSB_HDRC) += musb_gadget_ep0.o musb_gadget.o 12musb_hdrc-$(CONFIG_USB_MUSB_HDRC_HCD) += musb_virthub.o musb_host.o 13musb_hdrc-$(CONFIG_DEBUG_FS) += musb_debugfs.o 14 15# Hardware Glue Layer 16 |
17musb_hdrc-$(CONFIG_USB_MUSB_DA8XX) += da8xx.o | |
18musb_hdrc-$(CONFIG_USB_MUSB_BLACKFIN) += blackfin.o 19 20obj-$(CONFIG_USB_MUSB_OMAP2PLUS) += omap2430.o 21obj-$(CONFIG_USB_MUSB_AM35X) += am35x.o 22obj-$(CONFIG_USB_MUSB_TUSB6010) += tusb6010.o 23obj-$(CONFIG_USB_MUSB_DAVINCI) += davinci.o | 17musb_hdrc-$(CONFIG_USB_MUSB_BLACKFIN) += blackfin.o 18 19obj-$(CONFIG_USB_MUSB_OMAP2PLUS) += omap2430.o 20obj-$(CONFIG_USB_MUSB_AM35X) += am35x.o 21obj-$(CONFIG_USB_MUSB_TUSB6010) += tusb6010.o 22obj-$(CONFIG_USB_MUSB_DAVINCI) += davinci.o |
23obj-$(CONFIG_USB_MUSB_DA8XX) += da8xx.o |
|
24 25# the kconfig must guarantee that only one of the 26# possible I/O schemes will be enabled at a time ... 27# PIO only, or DMA (several potential schemes). 28# though PIO is always there to back up DMA, and for ep0 29 30ifneq ($(CONFIG_MUSB_PIO_ONLY),y) 31 --- 15 unchanged lines hidden --- | 24 25# the kconfig must guarantee that only one of the 26# possible I/O schemes will be enabled at a time ... 27# PIO only, or DMA (several potential schemes). 28# though PIO is always there to back up DMA, and for ep0 29 30ifneq ($(CONFIG_MUSB_PIO_ONLY),y) 31 --- 15 unchanged lines hidden --- |