mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 16:46:51 +07:00
8712b3098b
Add driver for Atlas EZO line of sensors with initial support for CO2 the sensor. This is effectively ASCII strings proxied over I2C due to these series of sensors being by default UART. Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
18 lines
578 B
Makefile
18 lines
578 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for IIO chemical sensors
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_ATLAS_PH_SENSOR) += atlas-sensor.o
|
|
obj-$(CONFIG_ATLAS_EZO_SENSOR) += atlas-ezo-sensor.o
|
|
obj-$(CONFIG_BME680) += bme680_core.o
|
|
obj-$(CONFIG_BME680_I2C) += bme680_i2c.o
|
|
obj-$(CONFIG_BME680_SPI) += bme680_spi.o
|
|
obj-$(CONFIG_CCS811) += ccs811.o
|
|
obj-$(CONFIG_IAQCORE) += ams-iaq-core.o
|
|
obj-$(CONFIG_PMS7003) += pms7003.o
|
|
obj-$(CONFIG_SENSIRION_SGP30) += sgp30.o
|
|
obj-$(CONFIG_SPS30) += sps30.o
|
|
obj-$(CONFIG_VZ89X) += vz89x.o
|