mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-04 02:25:58 +00:00

The BDC PCI driver was only used for design verification with an PCI/FPGA board. The board no longer exists and is not in use anywhere. All instances of this core now exist as a memory mapped device on the platform bus. NOTE: This only removes the PCI driver and does not remove the platform driver. Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Al Cooper <alcooperx@gmail.com> Link: https://lore.kernel.org/r/20210115213142.35003-1-alcooperx@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8 lines
186 B
Makefile
8 lines
186 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
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
|