Makefile (c71b1b9c21fa8f73028ebe82b17f738d3bf327f5) Makefile (7f7f9e2a5af9e30c6a0c6743ac874f67e2ef4b72)
1#
2# for USB OTG silicon based on Mentor Graphics INVENTRA designs
3#
4
5musb_hdrc-objs := musb_core.o
6
7obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o
8

--- 28 unchanged lines hidden (view full) ---

37ifeq ($(CONFIG_USB_GADGET_MUSB_HDRC),y)
38 musb_hdrc-objs += musb_gadget_ep0.o musb_gadget.o
39endif
40
41ifeq ($(CONFIG_USB_MUSB_HDRC_HCD),y)
42 musb_hdrc-objs += musb_virthub.o musb_host.o
43endif
44
1#
2# for USB OTG silicon based on Mentor Graphics INVENTRA designs
3#
4
5musb_hdrc-objs := musb_core.o
6
7obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o
8

--- 28 unchanged lines hidden (view full) ---

37ifeq ($(CONFIG_USB_GADGET_MUSB_HDRC),y)
38 musb_hdrc-objs += musb_gadget_ep0.o musb_gadget.o
39endif
40
41ifeq ($(CONFIG_USB_MUSB_HDRC_HCD),y)
42 musb_hdrc-objs += musb_virthub.o musb_host.o
43endif
44
45ifeq ($(CONFIG_DEBUG_FS),y)
46 musb_hdrc-objs += musb_debugfs.o
47endif
48
45# the kconfig must guarantee that only one of the
46# possible I/O schemes will be enabled at a time ...
47# PIO only, or DMA (several potential schemes).
48# though PIO is always there to back up DMA, and for ep0
49
50ifneq ($(CONFIG_MUSB_PIO_ONLY),y)
51
52 ifeq ($(CONFIG_USB_INVENTRA_DMA),y)

--- 29 unchanged lines hidden ---
49# the kconfig must guarantee that only one of the
50# possible I/O schemes will be enabled at a time ...
51# PIO only, or DMA (several potential schemes).
52# though PIO is always there to back up DMA, and for ep0
53
54ifneq ($(CONFIG_MUSB_PIO_ONLY),y)
55
56 ifeq ($(CONFIG_USB_INVENTRA_DMA),y)

--- 29 unchanged lines hidden ---