summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>2024-03-24 20:20:29 +0100
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2024-03-28 13:22:15 +0000
commitc71af78d9bf2edd9777113e7a9cbacc518318976 (patch)
tree4c30c176f8ff5c0203c91392a5e8ade54da57ecb
parent0a2c44324f3be607345834234259c0a1eaf65c1e (diff)
downloadlinux-stable-c71af78d9bf2edd9777113e7a9cbacc518318976.tar.gz
linux-stable-c71af78d9bf2edd9777113e7a9cbacc518318976.tar.bz2
linux-stable-c71af78d9bf2edd9777113e7a9cbacc518318976.zip
iio: health: max30102: add support for max30101
The Maxim max30101 is the replacement for the max30105, which is no longer recommended for future designs. Their internal structure is identical, as well as the register map, configuration options and sensitivity, which allows for code recycling. Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com> Link: https://lore.kernel.org/r/20240324-max30101-v2-2-611deb510c97@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
-rw-r--r--drivers/iio/health/max30102.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/iio/health/max30102.c b/drivers/iio/health/max30102.c
index 37e619827e8a..6616729af5b7 100644
--- a/drivers/iio/health/max30102.c
+++ b/drivers/iio/health/max30102.c
@@ -613,6 +613,7 @@ static void max30102_remove(struct i2c_client *client)
}
static const struct i2c_device_id max30102_id[] = {
+ { "max30101", max30105 },
{ "max30102", max30102 },
{ "max30105", max30105 },
{}
@@ -620,6 +621,7 @@ static const struct i2c_device_id max30102_id[] = {
MODULE_DEVICE_TABLE(i2c, max30102_id);
static const struct of_device_id max30102_dt_ids[] = {
+ { .compatible = "maxim,max30101" },
{ .compatible = "maxim,max30102" },
{ .compatible = "maxim,max30105" },
{ }