Christian Gromm | b276527 | 2020-03-10 14:02:40 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | menuconfig MOST |
| 3 | tristate "MOST support" |
| 4 | depends on HAS_DMA && CONFIGFS_FS |
| 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. |
Christian Gromm | 97a6f77 | 2020-07-31 14:20:58 +0200 | [diff] [blame] | 16 | |
| 17 | if MOST |
| 18 | config MOST_USB_HDM |
| 19 | tristate "USB" |
| 20 | depends on USB |
| 21 | help |
| 22 | 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: the |
| 25 | module will be called most_usb. |
Christian Gromm | ceea934 | 2020-08-20 13:23:15 +0200 | [diff] [blame] | 26 | |
| 27 | config MOST_CDEV |
| 28 | tristate "Cdev" |
| 29 | |
| 30 | help |
| 31 | Say Y here if you want to commumicate via character devices. |
| 32 | |
| 33 | To compile this driver as a module, choose M here: the |
| 34 | module will be called most_cdev. |
Christian Gromm | 13b41b5 | 2021-02-09 11:13:47 +0100 | [diff] [blame] | 35 | |
| 36 | config MOST_SND |
| 37 | tristate "Sound" |
| 38 | depends on SND |
| 39 | select SND_PCM |
| 40 | help |
| 41 | Say Y here if you want to commumicate via ALSA/sound devices. |
| 42 | |
| 43 | To compile this driver as a module, choose M here: the |
| 44 | module will be called most_sound. |
Christian Gromm | 97a6f77 | 2020-07-31 14:20:58 +0200 | [diff] [blame] | 45 | endif |