driver for the TSL4531 family of 16-bit I2C ambient light sensors; information is here: http://www.ams.com/eng/Products/Light-Sensors/Ambient-Light-Sensor-ALS/TSL45315 the chip offers simple lux output v3 (thanks Lars-Peter Clausen): * add mutex to when updating integration time * fix chip ID checking * code cleanups v2: * rename to tsl4351 * use INT_TIME Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
13 lines
389 B
Makefile
13 lines
389 B
Makefile
#
|
|
# Makefile for IIO Light sensors
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_ADJD_S311) += adjd_s311.o
|
|
obj-$(CONFIG_APDS9300) += apds9300.o
|
|
obj-$(CONFIG_HID_SENSOR_ALS) += hid-sensor-als.o
|
|
obj-$(CONFIG_SENSORS_LM3533) += lm3533-als.o
|
|
obj-$(CONFIG_SENSORS_TSL2563) += tsl2563.o
|
|
obj-$(CONFIG_TSL4531) += tsl4531.o
|
|
obj-$(CONFIG_VCNL4000) += vcnl4000.o
|