mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
0a2b8a0d11
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>
26 lines
391 B
Makefile
26 lines
391 B
Makefile
ccflags-$(CONFIG_USB_WUSB_CBAF_DEBUG) := -DDEBUG
|
|
|
|
obj-$(CONFIG_USB_WUSB) += wusbcore.o
|
|
obj-$(CONFIG_USB_HWA_HCD) += wusb-wa.o
|
|
obj-$(CONFIG_USB_WUSB_CBAF) += wusb-cbaf.o
|
|
|
|
|
|
wusbcore-y := \
|
|
crypto.o \
|
|
devconnect.o \
|
|
dev-sysfs.o \
|
|
mmc.o \
|
|
pal.o \
|
|
rh.o \
|
|
reservation.o \
|
|
security.o \
|
|
wusbhc.o
|
|
|
|
wusb-cbaf-y := cbaf.o
|
|
|
|
wusb-wa-y := \
|
|
wa-hc.o \
|
|
wa-nep.o \
|
|
wa-rpipe.o \
|
|
wa-xfer.o
|