c524fbca67
Add support for ENS210/ENS210A/ENS211/ENS212/ENS213A/ENS215. The ENS21x is a family of temperature and relative humidity sensors with accuracies tailored to the needs of specific applications. Signed-off-by: Joshua Felmeden <jfelmeden@thegoodpenguin.co.uk> Link: https://patch.msgid.link/20240805-ens21x-v6-2-5bb576ef26a6@thegoodpenguin.co.uk Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
25 lines
665 B
Makefile
25 lines
665 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_ENS210) += ens210.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
|