1# 2# Pressure drivers 3# 4# When adding new entries keep the list in alphabetical order 5 6menu "Pressure sensors" 7 8config IIO_ST_PRESS 9 tristate "STMicroelectronics pressure sensor Driver" 10 depends on (I2C || SPI_MASTER) && SYSFS 11 select IIO_ST_SENSORS_CORE 12 select IIO_ST_PRESS_I2C if (I2C) 13 select IIO_ST_PRESS_SPI if (SPI_MASTER) 14 select IIO_TRIGGERED_BUFFER if (IIO_BUFFER) 15 help 16 Say yes here to build support for STMicroelectronics pressure 17 sensors: LPS331AP. 18 19 This driver can also be built as a module. If so, these modules 20 will be created: 21 - st_pressure (core functions for the driver [it is mandatory]); 22 - st_pressure_i2c (necessary for the I2C devices [optional*]); 23 - st_pressure_spi (necessary for the SPI devices [optional*]); 24 25 (*) one of these is necessary to do something. 26 27config IIO_ST_PRESS_I2C 28 tristate 29 depends on IIO_ST_PRESS 30 depends on IIO_ST_SENSORS_I2C 31 32config IIO_ST_PRESS_SPI 33 tristate 34 depends on IIO_ST_PRESS 35 depends on IIO_ST_SENSORS_SPI 36 37endmenu 38