Skip to content

Commit a0108de

Browse files
committed
iio: temperature: add driver for max30210
MAX30210 ±0.1°C Accurate Ultra-Small Low-Power Digital Temperature Sensor Signed-off-by: John Erasmus Mari Geronimo <[email protected]>
1 parent 5668cc0 commit a0108de

File tree

4 files changed

+1220
-0
lines changed

4 files changed

+1220
-0
lines changed

MAINTAINERS

+1
Original file line numberDiff line numberDiff line change
@@ -12593,6 +12593,7 @@ L: [email protected]
1259312593
S: Supported
1259412594
W: https://ez.analog.com/linux-software-drivers
1259512595
F: Documentation/devicetree/bindings/iio/temperature/adi,max30210.yaml
12596+
F: drivers/iio/temperature/max30210.c
1259612597

1259712598
MAX31827 TEMPERATURE SWITCH DRIVER
1259812599
M: Daniel Matyas <[email protected]>

drivers/iio/temperature/Kconfig

+10
Original file line numberDiff line numberDiff line change
@@ -148,4 +148,14 @@ config MAX31865
148148
This driver can also be build as a module. If so, the module
149149
will be called max31865.
150150

151+
config MAX30210
152+
tristate "MAX30210 Low-Power I2C Digital Temperature Sensor"
153+
depends on I2C
154+
help
155+
If you say yes here you get support for MAX30210 low-power digital
156+
temperature sensor chip connected via I2C.
157+
158+
This driver can also be build as a module. If so, the module
159+
will be called max30210.
160+
151161
endmenu

drivers/iio/temperature/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ obj-$(CONFIG_IQS620AT_TEMP) += iqs620at-temp.o
77
obj-$(CONFIG_LTC2983) += ltc2983.o
88
obj-$(CONFIG_HID_SENSOR_TEMP) += hid-sensor-temperature.o
99
obj-$(CONFIG_MAXIM_THERMOCOUPLE) += maxim_thermocouple.o
10+
obj-$(CONFIG_MAX30210) += max30210.o
1011
obj-$(CONFIG_MAX31856) += max31856.o
1112
obj-$(CONFIG_MAX31865) += max31865.o
1213
obj-$(CONFIG_MLX90614) += mlx90614.o

0 commit comments

Comments
 (0)