Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.9 29 lines 732 B view raw
1# SPDX-License-Identifier: GPL-2.0 2menuconfig MOST_COMPONENTS 3 tristate "MOST support" 4 depends on HAS_DMA && CONFIGFS_FS && MOST 5 default n 6 help 7 Say Y here if you want to enable MOST support. 8 This driver needs at least one additional component to enable the 9 desired access from userspace (e.g. character devices) and one that 10 matches the network controller's hardware interface (e.g. USB). 11 12 To compile this driver as a module, choose M here: the 13 module will be called most_core. 14 15 If in doubt, say N here. 16 17 18 19if MOST_COMPONENTS 20 21source "drivers/staging/most/net/Kconfig" 22 23source "drivers/staging/most/video/Kconfig" 24 25source "drivers/staging/most/dim2/Kconfig" 26 27source "drivers/staging/most/i2c/Kconfig" 28 29endif