mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

This patch adds a UDC driver for Broadcom's USB3.0 Peripheral core named BDC. BDC supports control traffic on ep0 and bulk/Int/Isoch traffic on all other endpoints. [ balbi@ti.com : fix build error on randconfig due to lack of <linux/dmapool.h> ] Signed-off-by: Ashwini Pahuja <ashwini.linux@gmail.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
8 lines
191 B
Makefile
8 lines
191 B
Makefile
obj-$(CONFIG_USB_BDC_UDC) += bdc.o
|
|
bdc-y := bdc_core.o bdc_cmd.o bdc_ep.o bdc_udc.o
|
|
|
|
ifneq ($(CONFIG_USB_GADGET_VERBOSE),)
|
|
bdc-y += bdc_dbg.o
|
|
endif
|
|
|
|
obj-$(CONFIG_USB_BDC_PCI) += bdc_pci.o
|