diff mbox series

[v2,2/2] hwmon: ina2xx: add optional regulator support

Message ID 20230407160508.20479-3-clamor95@gmail.com
State Accepted
Commit ad20248a2d644087fc149e6a8db150bde826c16f
Headers show
Series Add power supply for INA2XX | expand

Commit Message

Svyatoslav Ryhel April 7, 2023, 4:05 p.m. UTC
TI ina2xx sensors according to datasheets have dedicated
vs supplies. Add it for proper work.

Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
---
 drivers/hwmon/ina2xx.c | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Guenter Roeck April 12, 2023, 3:19 p.m. UTC | #1
On Fri, Apr 07, 2023 at 07:05:08PM +0300, Svyatoslav Ryhel wrote:
> TI ina2xx sensors according to datasheets have dedicated
> vs supplies. Add it for proper work.
> 
> Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>

Applied to hwmon-next.

Thanks,
Guenter
diff mbox series

Patch

diff --git a/drivers/hwmon/ina2xx.c b/drivers/hwmon/ina2xx.c
index 00fc70305a89..fd50d9785ccb 100644
--- a/drivers/hwmon/ina2xx.c
+++ b/drivers/hwmon/ina2xx.c
@@ -656,6 +656,10 @@  static int ina2xx_probe(struct i2c_client *client)
 		return PTR_ERR(data->regmap);
 	}
 
+	ret = devm_regulator_get_enable(dev, "vs");
+	if (ret)
+		return dev_err_probe(dev, ret, "failed to enable vs regulator\n");
+
 	ret = ina2xx_init(data);
 	if (ret < 0) {
 		dev_err(dev, "error configuring the device: %d\n", ret);