mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-05 01:54:09 +08:00
a53d1202ae
The XillyUSB driver is the USB variant for the Xillybus FPGA IP core. Even though it presents a nearly identical API on the FPGA and host, it's almost a complete rewrite of the driver: The framework for exchanging data on a USB bus is fundamentally different from doing the same with a PCIe interface, which leaves very little in common between the existing driver and the new one for XillyUSB. Signed-off-by: Eli Billauer <eli.billauer@gmail.com> Link: https://lore.kernel.org/r/20210526100311.56327-3-eli.billauer@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11 lines
296 B
Makefile
11 lines
296 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for Xillybus driver
|
|
#
|
|
|
|
obj-$(CONFIG_XILLYBUS_CLASS) += xillybus_class.o
|
|
obj-$(CONFIG_XILLYBUS) += xillybus_core.o
|
|
obj-$(CONFIG_XILLYBUS_PCIE) += xillybus_pcie.o
|
|
obj-$(CONFIG_XILLYBUS_OF) += xillybus_of.o
|
|
obj-$(CONFIG_XILLYUSB) += xillyusb.o
|