Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
fork
Configure Feed
Select the types of activity you want to include in your feed.
1# SPDX-License-Identifier: GPL-2.0
2
3config KPC2000
4 bool "Daktronics KPC Device support"
5 select MFD_CORE
6 depends on PCI
7 depends on UIO
8 help
9 Select this if you wish to use the Daktronics KPC PCI devices
10
11 If unsure, say N.
12
13config KPC2000_CORE
14 tristate "Daktronics KPC PCI UIO device"
15 depends on KPC2000
16 help
17 Say Y here if you wish to support the Daktronics KPC PCI
18 device in UIO mode.
19
20 To compile this driver as a module, choose M here: the module
21 will be called kpc2000
22
23 If unsure, say N.
24
25config KPC2000_SPI
26 tristate "Daktronics KPC SPI device"
27 depends on KPC2000 && SPI
28 help
29 Say Y here if you wish to support the Daktronics KPC PCI
30 device in SPI mode.
31
32 To compile this driver as a module, choose M here: the module
33 will be called kpc2000_spi
34
35 If unsure, say N.
36
37config KPC2000_I2C
38 tristate "Daktronics KPC I2C device"
39 depends on KPC2000 && I2C
40 help
41 Say Y here if you wish to support the Daktronics KPC PCI
42 device in I2C mode.
43
44 To compile this driver as a module, choose M here: the module
45 will be called kpc2000_i2c
46
47 If unsure, say N.
48
49config KPC2000_DMA
50 tristate "Daktronics KPC DMA controller"
51 depends on KPC2000
52 help
53 Say Y here if you wish to support the Daktronics DMA controller.
54
55 To compile this driver as a module, choose M here: the module
56 will be called kpc2000_dma
57
58 If unsure, say N.
59