forked from luck/tmp_suning_uos_patched
654f31189e
This lets us remove a lot of code in the drivers that were all checking the same thing. It also found some bugs in a few of the drivers, which has been fixed up. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
13 lines
255 B
Makefile
13 lines
255 B
Makefile
#
|
|
# Makefile for USB ATM/xDSL drivers
|
|
#
|
|
|
|
obj-$(CONFIG_USB_CXACRU) += cxacru.o
|
|
obj-$(CONFIG_USB_SPEEDTOUCH) += speedtch.o
|
|
obj-$(CONFIG_USB_ATM) += usbatm.o
|
|
obj-$(CONFIG_USB_XUSBATM) += xusbatm.o
|
|
|
|
ifeq ($(CONFIG_USB_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|