hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# SPDX-License-Identifier: GPL-2.0-only
config IIO_ST_LSM6DSR
   tristate "STMicroelectronics LSM6DSR sensor"
   depends on (I2C || SPI)
   select IIO_BUFFER
   select IIO_TRIGGERED_BUFFER
   select IIO_ST_LSM6DSR_I2C if (I2C)
   select IIO_ST_LSM6DSR_SPI if (SPI_MASTER)
   help
     Say yes here to build support for STMicroelectronics LSM6DSR imu
     sensor.
 
     To compile this driver as a module, choose M here: the module
     will be called st_lsm6dsr.
 
config IIO_ST_LSM6DSR_I2C
   tristate
   depends on IIO_ST_LSM6DSR
 
config IIO_ST_LSM6DSR_SPI
   tristate
   depends on IIO_ST_LSM6DSR
 
config IIO_ST_LSM6DSR_MAY_WAKEUP
   bool "Enable wake-up irq"
   depends on IIO_ST_LSM6DSR
   help
     Say 'Y' to enable wake-up irq on interrupt line, this is for the
     Power Management.
 
     But this feature has not been fully implemented yet.
 
     If unsure, say 'N'.