24 lines
		
	
	
		
			655 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			655 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# 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
 |