mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 06:26:40 +07:00
d7ed89d5aa
Environmental humidity sensor is a hid defined sensor, it shows raw humidity measurement of air. More information can be found in: http://www.usb.org/developers/hidpage/HUTRR39b.pdf According to IIO ABI definition, humidityrelative data output unit is milli percent. Add the unit convert from percent to milli percent. Signed-off-by: Song Hongyan <hongyan.song@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
21 lines
527 B
Makefile
21 lines
527 B
Makefile
#
|
|
# Makefile for IIO humidity sensor drivers
|
|
#
|
|
|
|
obj-$(CONFIG_AM2315) += am2315.o
|
|
obj-$(CONFIG_DHT11) += dht11.o
|
|
obj-$(CONFIG_HDC100X) += hdc100x.o
|
|
obj-$(CONFIG_HID_SENSOR_HUMIDITY) += hid-sensor-humidity.o
|
|
|
|
hts221-y := hts221_core.o \
|
|
hts221_buffer.o
|
|
obj-$(CONFIG_HTS221) += hts221.o
|
|
obj-$(CONFIG_HTS221_I2C) += hts221_i2c.o
|
|
obj-$(CONFIG_HTS221_SPI) += hts221_spi.o
|
|
|
|
obj-$(CONFIG_HTU21) += htu21.o
|
|
obj-$(CONFIG_SI7005) += si7005.o
|
|
obj-$(CONFIG_SI7020) += si7020.o
|
|
|
|
ccflags-y += -I$(srctree)/drivers/iio/common/hid-sensors
|