mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
fb55a51310
This patch adds support for Maxim MAX31856 thermocouple temperature sensor support. More information can be found in: https://www.maximintegrated.com/en/ds/MAX31856.pdf NOTE: Driver support only Comparator Mode. Signed-off-by: Paresh Chaudhary <paresh.chaudhary@rockwellcollins.com> Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Patrick Havelange <patrick.havelange@essensium.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
15 lines
450 B
Makefile
15 lines
450 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for industrial I/O temperature drivers
|
|
#
|
|
|
|
obj-$(CONFIG_HID_SENSOR_TEMP) += hid-sensor-temperature.o
|
|
obj-$(CONFIG_MAXIM_THERMOCOUPLE) += maxim_thermocouple.o
|
|
obj-$(CONFIG_MAX31856) += max31856.o
|
|
obj-$(CONFIG_MLX90614) += mlx90614.o
|
|
obj-$(CONFIG_MLX90632) += mlx90632.o
|
|
obj-$(CONFIG_TMP006) += tmp006.o
|
|
obj-$(CONFIG_TMP007) += tmp007.o
|
|
obj-$(CONFIG_TSYS01) += tsys01.o
|
|
obj-$(CONFIG_TSYS02D) += tsys02d.o
|