Kconfig 777 B

12345678910111213141516171819202122232425262728293031
  1. # SPDX-License-Identifier: GPL-2.0
  2. menuconfig MOST_COMPONENTS
  3. tristate "MOST support"
  4. depends on HAS_DMA && CONFIGFS_FS && MOST
  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_COMPONENTS
  15. source "drivers/staging/most/net/Kconfig"
  16. source "drivers/staging/most/sound/Kconfig"
  17. source "drivers/staging/most/video/Kconfig"
  18. source "drivers/staging/most/dim2/Kconfig"
  19. source "drivers/staging/most/i2c/Kconfig"
  20. endif