Kconfig 818 B

1234567891011121314151617181920212223242526272829303132333435
  1. menuconfig MOST
  2. tristate "MOST support"
  3. depends on HAS_DMA
  4. default n
  5. ---help---
  6. Say Y here if you want to enable MOST support.
  7. This driver needs at least one additional component to enable the
  8. desired access from userspace (e.g. character devices) and one that
  9. matches the network controller's hardware interface (e.g. USB).
  10. To compile this driver as a module, choose M here: the
  11. module will be called most_core.
  12. If in doubt, say N here.
  13. if MOST
  14. source "drivers/staging/most/cdev/Kconfig"
  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. source "drivers/staging/most/usb/Kconfig"
  21. endif