Kconfig 703 B

123456789101112131415161718192021222324252627
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # SSP sensor drivers and commons configuration
  4. #
  5. menu "SSP Sensor Common"
  6. config IIO_SSP_SENSORS_COMMONS
  7. tristate "Commons for all SSP Sensor IIO drivers"
  8. depends on IIO_SSP_SENSORHUB
  9. select IIO_BUFFER
  10. select IIO_KFIFO_BUF
  11. help
  12. Say yes here to build commons for SSP sensors.
  13. To compile this as a module, choose M here: the module
  14. will be called ssp_iio.
  15. config IIO_SSP_SENSORHUB
  16. tristate "Samsung Sensorhub driver"
  17. depends on SPI
  18. select MFD_CORE
  19. help
  20. SSP driver for sensorhub.
  21. If you say yes here you get ssp support for sensorhub.
  22. To compile this driver as a module, choose M here: the
  23. module will be called sensorhub.
  24. endmenu