Kconfig 686 B

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