mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-16 07:24:39 +08:00
efed421a94
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>
9 lines
191 B
Makefile
9 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
|