Kconfig 946 B

1234567891011121314151617181920212223242526272829303132333435
  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. To compile this driver as a module, choose M here: the
  12. module will be called most_core.
  13. If in doubt, say N here.
  14. if MOST
  15. config MOST_USB_HDM
  16. tristate "USB"
  17. depends on USB
  18. help
  19. Say Y here if you want to connect via USB to network transceiver.
  20. To compile this driver as a module, choose M here: the
  21. module will be called most_usb.
  22. config MOST_CDEV
  23. tristate "Cdev"
  24. help
  25. Say Y here if you want to commumicate via character devices.
  26. To compile this driver as a module, choose M here: the
  27. module will be called most_cdev.
  28. endif