Commit 334ecdd0 authored by Gregor Boirie's avatar Gregor Boirie Committed by Jonathan Cameron

iio:pressure:ms5611: fix missing regulator_disable

Ensure optional regulator is properly disabled when present.

Fixes: 3145229f ("iio:pressure:ms5611: power regulator support")
Signed-off-by: default avatarGregor Boirie <gregor.boirie@parrot.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 718ba46e
...@@ -16,6 +16,8 @@ ...@@ -16,6 +16,8 @@
#include <linux/iio/iio.h> #include <linux/iio/iio.h>
#include <linux/mutex.h> #include <linux/mutex.h>
struct regulator;
#define MS5611_RESET 0x1e #define MS5611_RESET 0x1e
#define MS5611_READ_ADC 0x00 #define MS5611_READ_ADC 0x00
#define MS5611_READ_PROM_WORD 0xA0 #define MS5611_READ_PROM_WORD 0xA0
...@@ -57,6 +59,7 @@ struct ms5611_state { ...@@ -57,6 +59,7 @@ struct ms5611_state {
s32 *temp, s32 *pressure); s32 *temp, s32 *pressure);
struct ms5611_chip_info *chip_info; struct ms5611_chip_info *chip_info;
struct regulator *vdd;
}; };
int ms5611_probe(struct iio_dev *indio_dev, struct device *dev, int ms5611_probe(struct iio_dev *indio_dev, struct device *dev,
......
...@@ -387,24 +387,45 @@ static const struct iio_info ms5611_info = { ...@@ -387,24 +387,45 @@ static const struct iio_info ms5611_info = {
static int ms5611_init(struct iio_dev *indio_dev) static int ms5611_init(struct iio_dev *indio_dev)
{ {
int ret; int ret;
struct regulator *vdd = devm_regulator_get(indio_dev->dev.parent, struct ms5611_state *st = iio_priv(indio_dev);
"vdd");
/* Enable attached regulator if any. */ /* Enable attached regulator if any. */
if (!IS_ERR(vdd)) { st->vdd = devm_regulator_get(indio_dev->dev.parent, "vdd");
ret = regulator_enable(vdd); if (!IS_ERR(st->vdd)) {
ret = regulator_enable(st->vdd);
if (ret) { if (ret) {
dev_err(indio_dev->dev.parent, dev_err(indio_dev->dev.parent,
"failed to enable Vdd supply: %d\n", ret); "failed to enable Vdd supply: %d\n", ret);
return ret; return ret;
} }
} else {
ret = PTR_ERR(st->vdd);
if (ret != -ENODEV)
return ret;
} }
ret = ms5611_reset(indio_dev); ret = ms5611_reset(indio_dev);
if (ret < 0) if (ret < 0)
return ret; goto err_regulator_disable;
ret = ms5611_read_prom(indio_dev);
if (ret < 0)
goto err_regulator_disable;
return 0;
return ms5611_read_prom(indio_dev); err_regulator_disable:
if (!IS_ERR_OR_NULL(st->vdd))
regulator_disable(st->vdd);
return ret;
}
static void ms5611_fini(const struct iio_dev *indio_dev)
{
const struct ms5611_state *st = iio_priv(indio_dev);
if (!IS_ERR_OR_NULL(st->vdd))
regulator_disable(st->vdd);
} }
int ms5611_probe(struct iio_dev *indio_dev, struct device *dev, int ms5611_probe(struct iio_dev *indio_dev, struct device *dev,
...@@ -436,7 +457,7 @@ int ms5611_probe(struct iio_dev *indio_dev, struct device *dev, ...@@ -436,7 +457,7 @@ int ms5611_probe(struct iio_dev *indio_dev, struct device *dev,
ms5611_trigger_handler, NULL); ms5611_trigger_handler, NULL);
if (ret < 0) { if (ret < 0) {
dev_err(dev, "iio triggered buffer setup failed\n"); dev_err(dev, "iio triggered buffer setup failed\n");
return ret; goto err_fini;
} }
ret = iio_device_register(indio_dev); ret = iio_device_register(indio_dev);
...@@ -449,7 +470,8 @@ int ms5611_probe(struct iio_dev *indio_dev, struct device *dev, ...@@ -449,7 +470,8 @@ int ms5611_probe(struct iio_dev *indio_dev, struct device *dev,
err_buffer_cleanup: err_buffer_cleanup:
iio_triggered_buffer_cleanup(indio_dev); iio_triggered_buffer_cleanup(indio_dev);
err_fini:
ms5611_fini(indio_dev);
return ret; return ret;
} }
EXPORT_SYMBOL(ms5611_probe); EXPORT_SYMBOL(ms5611_probe);
...@@ -458,6 +480,7 @@ int ms5611_remove(struct iio_dev *indio_dev) ...@@ -458,6 +480,7 @@ int ms5611_remove(struct iio_dev *indio_dev)
{ {
iio_device_unregister(indio_dev); iio_device_unregister(indio_dev);
iio_triggered_buffer_cleanup(indio_dev); iio_triggered_buffer_cleanup(indio_dev);
ms5611_fini(indio_dev);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment