Kconfig (9b031c86506cef9acae45e61339fcf9deaabb793) | Kconfig (97a6f772f36b7f52bcfa56a581bbd2470cffe23d) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2menuconfig 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. | 1# SPDX-License-Identifier: GPL-2.0 2menuconfig 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. |
16 17if MOST 18config 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. 26endif |
|