mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
eb869ade30
chip has four 16-bit channels for red, green, blue, clear color intensity; driver supports the TCS3x7x family of devices and was tested with a TCS34725 chip; further information here: http://www.ams.com/eng/Products/Light-Sensors/Color-Sensor/TCS34725 v2 (thanks to Jonathan Cameron): * drop dynamic buffer allocation, buffer is in tcs3472_data * limit sysfs output to PAGE_SIZE * check val2 == 0 when writing CALIBSCALE Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net> Cc: Jon Brenner <jon.brenner@ams.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
14 lines
425 B
Makefile
14 lines
425 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_TCS3472) += tcs3472.o
|
|
obj-$(CONFIG_TSL4531) += tsl4531.o
|
|
obj-$(CONFIG_VCNL4000) += vcnl4000.o
|