You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
655 B
24 lines
655 B
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# all sensors drivers configuration
|
|
#
|
|
|
|
comment "handle all sensors"
|
|
|
|
menuconfig SENSOR_DEVICE
|
|
tristate "handle angle,accel,compass,gyroscope,lsensor psensor etc"
|
|
default n
|
|
|
|
if SENSOR_DEVICE
|
|
source "drivers/input/sensors/angle/Kconfig"
|
|
source "drivers/input/sensors/accel/Kconfig"
|
|
source "drivers/input/sensors/compass/Kconfig"
|
|
source "drivers/input/sensors/gyro/Kconfig"
|
|
source "drivers/input/sensors/lsensor/Kconfig"
|
|
source "drivers/input/sensors/psensor/Kconfig"
|
|
source "drivers/input/sensors/temperature/Kconfig"
|
|
source "drivers/input/sensors/pressure/Kconfig"
|
|
source "drivers/input/sensors/hall/Kconfig"
|
|
|
|
endif
|