mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
00a2430ff0
The drivers/usb/gadget directory contains many files. Files which are related can be distributed into separate directories. This patch moves the USB functions implementations into a separate directory. Signed-off-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
13 lines
421 B
Makefile
13 lines
421 B
Makefile
#
|
|
# USB peripheral controller drivers
|
|
#
|
|
subdir-ccflags-$(CONFIG_USB_GADGET_DEBUG) := -DDEBUG
|
|
subdir-ccflags-$(CONFIG_USB_GADGET_VERBOSE) += -DVERBOSE_DEBUG
|
|
ccflags-y += -I$(PWD)/drivers/usb/gadget/udc
|
|
|
|
obj-$(CONFIG_USB_LIBCOMPOSITE) += libcomposite.o
|
|
libcomposite-y := usbstring.o config.o epautoconf.o
|
|
libcomposite-y += composite.o functions.o configfs.o u_f.o
|
|
|
|
obj-$(CONFIG_USB_GADGET) += udc/ function/ legacy/
|