blob: 26fdc0bdb99d59d8f8a956252d5d927f6b553551 [file] [log] [blame]
Denis CIOCCA217494e2013-06-03 15:58:00 +01001#
2# Pressure drivers
3#
Lars-Peter Clausen3edc84e2013-07-15 08:45:00 +01004# When adding new entries keep the list in alphabetical order
5
Peter Meerwald93232cd2013-06-23 22:28:00 +01006menu "Pressure sensors"
Denis CIOCCA217494e2013-06-03 15:58:00 +01007
8config IIO_ST_PRESS
Peter Meerwald93232cd2013-06-23 22:28:00 +01009 tristate "STMicroelectronics pressure sensor Driver"
Denis CIOCCA217494e2013-06-03 15:58:00 +010010 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
Peter Meerwald93232cd2013-06-23 22:28:00 +010016 Say yes here to build support for STMicroelectronics pressure
17 sensors: LPS331AP.
Denis CIOCCA217494e2013-06-03 15:58:00 +010018
Peter Meerwald341673f2013-06-23 22:28:00 +010019 This driver can also be built as a module. If so, these modules
20 will be created:
Denis CIOCCA217494e2013-06-03 15:58:00 +010021 - 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