0001 # SPDX-License-Identifier: GPL-2.0
0002 menuconfig MOST
0003 tristate "MOST support"
0004 depends on HAS_DMA && CONFIGFS_FS
0005 default n
0006 help
0007 Say Y here if you want to enable MOST support.
0008 This driver needs at least one additional component to enable the
0009 desired access from userspace (e.g. character devices) and one that
0010 matches the network controller's hardware interface (e.g. USB).
0011
0012 To compile this driver as a module, choose M here: the
0013 module will be called most_core.
0014
0015 If in doubt, say N here.
0016
0017 if MOST
0018 config MOST_USB_HDM
0019 tristate "USB"
0020 depends on USB
0021 help
0022 Say Y here if you want to connect via USB to network transceiver.
0023
0024 To compile this driver as a module, choose M here: the
0025 module will be called most_usb.
0026
0027 config MOST_CDEV
0028 tristate "Cdev"
0029
0030 help
0031 Say Y here if you want to commumicate via character devices.
0032
0033 To compile this driver as a module, choose M here: the
0034 module will be called most_cdev.
0035
0036 config MOST_SND
0037 tristate "Sound"
0038 depends on SND
0039 select SND_PCM
0040 help
0041 Say Y here if you want to commumicate via ALSA/sound devices.
0042
0043 To compile this driver as a module, choose M here: the
0044 module will be called most_sound.
0045 endif