[PATCH 6.1.y-cip 07/23] hwmon: (tmp108) Add basic regulator support
Tommaso Merciai <[email protected]> Fri, 17 Jul 2026 15:12:25 +0200
| Newsgroups | org.cip-project.lists.cip-dev |
|---|---|
| Message-ID | <[email protected]> |
From: Stanislav Jakubek <[email protected]> commit bddbb9cff4ab97ad367692201a0abe680a59d44d upstream. TMP108/P3T1085 are powered by the V+/VCC regulator, add support for it. Signed-off-by: Stanislav Jakubek <[email protected]> Signed-off-by: Guenter Roeck <[email protected]> Signed-off-by: Tommaso Merciai <[email protected]> --- drivers/hwmon/tmp108.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/hwmon/tmp108.c b/drivers/hwmon/tmp108.c index 955e6cd378dd..d389b698d3bc 100644 --- a/drivers/hwmon/tmp108.c +++ b/drivers/hwmon/tmp108.c @@ -17,6 +17,7 @@ #include <linux/init.h> #include <linux/jiffies.h> #include <linux/regmap.h> +#include <linux/regulator/consumer.h> #include <linux/slab.h> #define DRIVER_NAME "tmp108" @@ -331,6 +332,10 @@ static int tmp108_common_probe(struct device *dev, struct regmap *regmap, char * u32 config; int err; + err = devm_regulator_get_enable(dev, "vcc"); + if (err) + return dev_err_probe(dev, err, "Failed to enable regulator\n"); + tmp108 = devm_kzalloc(dev, sizeof(*tmp108), GFP_KERNEL); if (!tmp108) return -ENOMEM; -- 2.54.0