aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb
diff options
context:
space:
mode:
authormatt mooney <mfm@muteddisk.com>2010-10-06 22:03:26 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-10-22 13:22:07 -0400
commit0a2b8a0d1101179fdebc974a7c72b514aede9d9d (patch)
tree148dce87f8a233184ba3f8b75853d3584510af49 /drivers/usb/musb
parent75d87cdf3cefd2744fabd3f2a558c49cdf36238b (diff)
usb: makefile cleanup
For all modules, change <module>-objs to <module>-y; remove if-statements and replace with lists using the kbuild idiom; move flags to the top of the file; and fix alignment while trying to maintain the original scheme in each file. None of the dependencies are modified. Signed-off-by: matt mooney <mfm@muteddisk.com> Acked-by: Sam Ravnborg <sam@ravnborg.org> Acked-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/musb')
-rw-r--r--drivers/usb/musb/Makefile71
1 files changed, 17 insertions, 54 deletions
diff --git a/drivers/usb/musb/Makefile b/drivers/usb/musb/Makefile
index 16aaae28714d..ffc0e0525823 100644
--- a/drivers/usb/musb/Makefile
+++ b/drivers/usb/musb/Makefile
@@ -2,53 +2,23 @@
2# for USB OTG silicon based on Mentor Graphics INVENTRA designs 2# for USB OTG silicon based on Mentor Graphics INVENTRA designs
3# 3#
4 4
5musb_hdrc-objs := musb_core.o 5ccflags-$(CONFIG_USB_MUSB_DEBUG) := -DDEBUG
6
7obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o
8
9ifeq ($(CONFIG_ARCH_DAVINCI_DMx),y)
10 musb_hdrc-objs += davinci.o
11endif
12
13ifeq ($(CONFIG_ARCH_DAVINCI_DA8XX),y)
14 musb_hdrc-objs += da8xx.o
15endif
16
17ifeq ($(CONFIG_USB_TUSB6010),y)
18 musb_hdrc-objs += tusb6010.o
19endif
20
21ifeq ($(CONFIG_ARCH_OMAP2430),y)
22 musb_hdrc-objs += omap2430.o
23endif
24
25ifeq ($(CONFIG_ARCH_OMAP3430),y)
26 musb_hdrc-objs += omap2430.o
27endif
28
29ifeq ($(CONFIG_ARCH_OMAP4),y)
30 musb_hdrc-objs += omap2430.o
31endif
32 6
33ifeq ($(CONFIG_BF54x),y) 7obj-$(CONFIG_USB_MUSB_HDRC) += musb_hdrc.o
34 musb_hdrc-objs += blackfin.o
35endif
36 8
37ifeq ($(CONFIG_BF52x),y) 9musb_hdrc-y := musb_core.o
38 musb_hdrc-objs += blackfin.o
39endif
40 10
41ifeq ($(CONFIG_USB_GADGET_MUSB_HDRC),y) 11musb_hdrc-$(CONFIG_ARCH_DAVINCI_DMx) += davinci.o
42 musb_hdrc-objs += musb_gadget_ep0.o musb_gadget.o 12musb_hdrc-$(CONFIG_ARCH_DAVINCI_DA8XX) += da8xx.o
43endif 13musb_hdrc-$(CONFIG_USB_TUSB6010) += tusb6010.o
44 14musb_hdrc-$(CONFIG_ARCH_OMAP2430) += omap2430.o
45ifeq ($(CONFIG_USB_MUSB_HDRC_HCD),y) 15musb_hdrc-$(CONFIG_ARCH_OMAP3430) += omap2430.o
46 musb_hdrc-objs += musb_virthub.o musb_host.o 16musb_hdrc-$(CONFIG_ARCH_OMAP4) += omap2430.o
47endif 17musb_hdrc-$(CONFIG_BF54x) += blackfin.o
48 18musb_hdrc-$(CONFIG_BF52x) += blackfin.o
49ifeq ($(CONFIG_DEBUG_FS),y) 19musb_hdrc-$(CONFIG_USB_GADGET_MUSB_HDRC) += musb_gadget_ep0.o musb_gadget.o
50 musb_hdrc-objs += musb_debugfs.o 20musb_hdrc-$(CONFIG_USB_MUSB_HDRC_HCD) += musb_virthub.o musb_host.o
51endif 21musb_hdrc-$(CONFIG_DEBUG_FS) += musb_debugfs.o
52 22
53# the kconfig must guarantee that only one of the 23# the kconfig must guarantee that only one of the
54# possible I/O schemes will be enabled at a time ... 24# possible I/O schemes will be enabled at a time ...
@@ -58,24 +28,17 @@ endif
58ifneq ($(CONFIG_MUSB_PIO_ONLY),y) 28ifneq ($(CONFIG_MUSB_PIO_ONLY),y)
59 29
60 ifeq ($(CONFIG_USB_INVENTRA_DMA),y) 30 ifeq ($(CONFIG_USB_INVENTRA_DMA),y)
61 musb_hdrc-objs += musbhsdma.o 31 musb_hdrc-y += musbhsdma.o
62 32
63 else 33 else
64 ifeq ($(CONFIG_USB_TI_CPPI_DMA),y) 34 ifeq ($(CONFIG_USB_TI_CPPI_DMA),y)
65 musb_hdrc-objs += cppi_dma.o 35 musb_hdrc-y += cppi_dma.o
66 36
67 else 37 else
68 ifeq ($(CONFIG_USB_TUSB_OMAP_DMA),y) 38 ifeq ($(CONFIG_USB_TUSB_OMAP_DMA),y)
69 musb_hdrc-objs += tusb6010_omap.o 39 musb_hdrc-y += tusb6010_omap.o
70 40
71 endif 41 endif
72 endif 42 endif
73 endif 43 endif
74endif 44endif
75
76
77################################################################################
78
79# Debugging
80
81ccflags-$(CONFIG_USB_MUSB_DEBUG) := -DDEBUG