46 lines · plain
1# SPDX-License-Identifier: GPL-2.02menuconfig MOST3 tristate "MOST (Media Oriented Systems Transport) support"4 depends on HAS_DMA && CONFIGFS_FS5 default n6 help7 Say Y here if you want to enable MOST support.8 This driver needs at least one additional component to enable the9 desired access from userspace (e.g. character devices) and one that10 matches the network controller's hardware interface (e.g. USB).11 12 To compile this driver as a module, choose M here: the13 module will be called most_core.14 15 If in doubt, say N here.16 17if MOST18config MOST_USB_HDM19 tristate "USB"20 depends on USB21 help22 Say Y here if you want to connect via USB to network transceiver.23 24 To compile this driver as a module, choose M here: the25 module will be called most_usb.26 27config MOST_CDEV28 tristate "Cdev"29 30 help31 Say Y here if you want to commumicate via character devices.32 33 To compile this driver as a module, choose M here: the34 module will be called most_cdev.35 36config MOST_SND37 tristate "Sound"38 depends on SND39 select SND_PCM40 help41 Say Y here if you want to commumicate via ALSA/sound devices.42 43 To compile this driver as a module, choose M here: the44 module will be called most_sound.45endif46