Kconfig 751 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Industrial I/O standalone triggers
  3. #
  4. # When adding new entries keep the list in alphabetical order
  5. menu "Triggers - standalone"
  6. config IIO_INTERRUPT_TRIGGER
  7. tristate "Generic interrupt trigger"
  8. help
  9. Provides support for using an interrupt of any type as an IIO
  10. trigger. This may be provided by a gpio driver for example.
  11. To compile this driver as a module, choose M here: the
  12. module will be called iio-trig-interrupt.
  13. config IIO_SYSFS_TRIGGER
  14. tristate "SYSFS trigger"
  15. depends on SYSFS
  16. select IRQ_WORK
  17. help
  18. Provides support for using SYSFS entries as IIO triggers.
  19. If unsure, say N (but it's safe to say "Y").
  20. To compile this driver as a module, choose M here: the
  21. module will be called iio-trig-sysfs.
  22. endmenu