diff options
author | Eli Billauer <eli.billauer@gmail.com> | 2021-05-26 12:03:11 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-05-27 14:07:41 +0200 |
commit | a53d1202aef122894b6e46116a92174a9123db5d (patch) | |
tree | 7e98e90cd3515dc9974940ca2d0eec981225990f /drivers/char/xillybus/Makefile | |
parent | char: xillybus: Move class-related functions to new xillybus_class.c (diff) | |
download | linux-a53d1202aef122894b6e46116a92174a9123db5d.tar.xz linux-a53d1202aef122894b6e46116a92174a9123db5d.zip |
char: xillybus: Add driver for XillyUSB (Xillybus variant for USB)
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>
Diffstat (limited to 'drivers/char/xillybus/Makefile')
-rw-r--r-- | drivers/char/xillybus/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/char/xillybus/Makefile b/drivers/char/xillybus/Makefile index 591615264591..16f31d03209d 100644 --- a/drivers/char/xillybus/Makefile +++ b/drivers/char/xillybus/Makefile @@ -7,3 +7,4 @@ 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 |