diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-24 12:49:00 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2013-09-28 11:49:45 +0100 |
commit | d3789c3ee2e2b7e8c9b6043e9e8715d6d1e80299 (patch) | |
tree | 140a572a56aa6ece1c9ada013ef133bd91a58f63 /drivers/iio/amplifiers | |
parent | bda2f8fca20b564ac8edb2b9c080d942c2144359 (diff) | |
download | op-kernel-dev-d3789c3ee2e2b7e8c9b6043e9e8715d6d1e80299.zip op-kernel-dev-d3789c3ee2e2b7e8c9b6043e9e8715d6d1e80299.tar.gz |
iio: amplifiers: ad8366: Remove regulator_put
Since devm_regulator_get is used, regulator_put should not be
used. Remove it.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/amplifiers')
-rw-r--r-- | drivers/iio/amplifiers/ad8366.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/iio/amplifiers/ad8366.c b/drivers/iio/amplifiers/ad8366.c index d0a79a4..ba6f6a9 100644 --- a/drivers/iio/amplifiers/ad8366.c +++ b/drivers/iio/amplifiers/ad8366.c @@ -185,10 +185,8 @@ static int ad8366_remove(struct spi_device *spi) iio_device_unregister(indio_dev); - if (!IS_ERR(reg)) { + if (!IS_ERR(reg)) regulator_disable(reg); - regulator_put(reg); - } return 0; } |