f1dfcbaa7b
Something when wrong when applying the original patch and only the c file made it in. Here the rest of the changes are applied. Fixes: c9180b8e39be ("iio: humidity: Add driver for ti HDC302x humidity sensors") Reported-by: Lars-Peter Clausen <lars@metafoo.de> Cc: Javier Carrasco <javier.carrasco.cruz@gmail.com> Cc: Li peiyu <579lpy@gmail.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Reviewed-by: Lars-Peter Clausen <lars@metafoo.de>
24 lines
632 B
Makefile
24 lines
632 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for IIO humidity sensor drivers
|
|
#
|
|
|
|
obj-$(CONFIG_AM2315) += am2315.o
|
|
obj-$(CONFIG_DHT11) += dht11.o
|
|
obj-$(CONFIG_HDC100X) += hdc100x.o
|
|
obj-$(CONFIG_HDC2010) += hdc2010.o
|
|
obj-$(CONFIG_HDC3020) += hdc3020.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
|