mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
8ffdff6a8c
The comedi code came into the kernel back in 2008, but traces its lifetime to much much earlier. It's been polished and buffed and there's really nothing preventing it from being part of the "real" portion of the kernel. So move it to drivers/comedi/ as it belongs there. Many thanks to the hundreds of developers who did the work to make this happen. Cc: Ian Abbott <abbotti@mev.co.uk> Cc: H Hartley Sweeten <hsweeten@visionengravers.com> Link: https://lore.kernel.org/r/YHauop4u3sP6lz8j@kroah.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16 lines
449 B
Makefile
16 lines
449 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
ccflags-$(CONFIG_COMEDI_DEBUG) := -DDEBUG
|
|
|
|
comedi-y := comedi_fops.o range.o drivers.o \
|
|
comedi_buf.o
|
|
comedi-$(CONFIG_PROC_FS) += proc.o
|
|
|
|
obj-$(CONFIG_COMEDI_PCI_DRIVERS) += comedi_pci.o
|
|
obj-$(CONFIG_COMEDI_PCMCIA_DRIVERS) += comedi_pcmcia.o
|
|
obj-$(CONFIG_COMEDI_USB_DRIVERS) += comedi_usb.o
|
|
|
|
obj-$(CONFIG_COMEDI) += comedi.o
|
|
|
|
obj-$(CONFIG_COMEDI) += kcomedilib/
|
|
obj-$(CONFIG_COMEDI) += drivers/
|