diff options
| author | Marek Vasut <marex@nabladev.com> | 2026-08-13 11:04:24 +0200 |
|---|---|---|
| committer | Guenter Roeck <linux@roeck-us.net> | 2026-08-13 04:51:39 -0700 |
| commit | 24be3317697c2374802bd63f09cb5085b24c4cf9 (patch) | |
| tree | 1a2647547ce96b51648f5b8c83b30eb9d31cc189 | |
| parent | 7c933f9a521070eec2ee1d76abcef6088935a8c8 (diff) | |
hwmon: (tmp102) Add TMP113 device ID
The TMP113 temperature sensor part is register compatible with TMP102,
add non-DT I2C device ID. Unlike TMP102 and TMP110, the TMP113 does
have additional unique ID registers, those are currently unused.
Signed-off-by: Marek Vasut <marex@nabladev.com>
Link: https://lore.kernel.org/r/20260813090456.70816-2-marex@nabladev.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
| -rw-r--r-- | drivers/hwmon/tmp102.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/tmp102.c b/drivers/hwmon/tmp102.c index 26c461e95175..50a8b050d8da 100644 --- a/drivers/hwmon/tmp102.c +++ b/drivers/hwmon/tmp102.c @@ -397,6 +397,7 @@ static DEFINE_SIMPLE_DEV_PM_OPS(tmp102_dev_pm_ops, tmp102_suspend, tmp102_resume static const struct i2c_device_id tmp102_id[] = { { .name = "tmp102" }, { .name = "tmp110" }, + { .name = "tmp113" }, { } }; MODULE_DEVICE_TABLE(i2c, tmp102_id); |
