mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 10:36:49 +07:00
59d0f2da35
Environmental temperature sensor is a hid defined sensor, it measures temperature. More information can be found in: http://www.usb.org/developers/hidpage/HUTRR39b.pdf According to IIO ABI definition, IIO_TEMP data output unit is milli degrees Celsius. Add the unit convert from degree to milli degree. Signed-off-by: Song Hongyan <hongyan.song@intel.com> Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
12 lines
341 B
Makefile
12 lines
341 B
Makefile
#
|
|
# 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_MLX90614) += mlx90614.o
|
|
obj-$(CONFIG_TMP006) += tmp006.o
|
|
obj-$(CONFIG_TMP007) += tmp007.o
|
|
obj-$(CONFIG_TSYS01) += tsys01.o
|
|
obj-$(CONFIG_TSYS02D) += tsys02d.o
|