Kconfig 896 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # Hid Sensor common modules
  3. #
  4. menu "Hid Sensor IIO Common"
  5. config HID_SENSOR_IIO_COMMON
  6. tristate "Common modules for all HID Sensor IIO drivers"
  7. depends on HID_SENSOR_HUB
  8. select HID_SENSOR_IIO_TRIGGER if IIO_BUFFER
  9. help
  10. Say yes here to build support for HID sensor to use
  11. HID sensor common processing for attributes and IIO triggers.
  12. There are many attributes which can be shared among multiple
  13. HID sensor drivers, this module contains processing for those
  14. attributes.
  15. config HID_SENSOR_IIO_TRIGGER
  16. tristate "Common module (trigger) for all HID Sensor IIO drivers"
  17. depends on HID_SENSOR_HUB && HID_SENSOR_IIO_COMMON && IIO_BUFFER
  18. select IIO_TRIGGER
  19. help
  20. Say yes here to build trigger support for HID sensors.
  21. Triggers will be send if all requested attributes were read.
  22. If this driver is compiled as a module, it will be named
  23. hid-sensor-trigger.
  24. endmenu