From: Linus Walleij <linus.walleij@linaro.org>
To: Jonathan Cameron <jic23@kernel.org>, linux-iio@vger.kernel.org
Cc: Lars-Peter Clausen <lars@metafoo.de>,
Gregor Boirie <gregor.boirie@parrot.com>,
Richard Leitner <dev@g0hl1n.net>,
Krzysztof Kozlowski <k.kozlowski@samsung.com>,
Gwendal Grignou <gwendal@chromium.org>,
Linus Walleij <linus.walleij@linaro.org>
Subject: [PATCH 3/5] iio: magn: ak8975: refactor regulator handlers
Date: Wed, 22 Jun 2016 00:18:16 +0200 [thread overview]
Message-ID: <1466547498-15484-4-git-send-email-linus.walleij@linaro.org> (raw)
In-Reply-To: <1466547498-15484-1-git-send-email-linus.walleij@linaro.org>
Move the regulator_get() calls directly into the probe() function,
keep only the power_on()/power_off() functions to flick the
regulators on/off.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
drivers/iio/magnetometer/ak8975.c | 38 +++++++++++++++-----------------------
1 file changed, 15 insertions(+), 23 deletions(-)
diff --git a/drivers/iio/magnetometer/ak8975.c b/drivers/iio/magnetometer/ak8975.c
index 62f73d9d38b4..8844e6f45c8e 100644
--- a/drivers/iio/magnetometer/ak8975.c
+++ b/drivers/iio/magnetometer/ak8975.c
@@ -383,32 +383,19 @@ struct ak8975_data {
};
/* Enable attached power regulator if any. */
-static int ak8975_power_on(struct i2c_client *client)
+static int ak8975_power_on(const struct ak8975_data *data)
{
- const struct iio_dev *indio_dev = i2c_get_clientdata(client);
- struct ak8975_data *data = iio_priv(indio_dev);
int ret;
- data->vdd = devm_regulator_get(&client->dev, "vdd");
- if (IS_ERR(data->vdd)) {
- ret = PTR_ERR(data->vdd);
- } else {
- ret = regulator_enable(data->vdd);
- }
+ ret = regulator_enable(data->vdd);
if (ret) {
- dev_warn(&client->dev,
+ dev_warn(&data->client->dev,
"Failed to enable specified Vdd supply\n");
return ret;
}
-
- data->vid = devm_regulator_get(&client->dev, "vid");
- if (IS_ERR(data->vid)) {
- ret = PTR_ERR(data->vid);
- } else {
- ret = regulator_enable(data->vid);
- }
+ ret = regulator_enable(data->vid);
if (ret) {
- dev_warn(&client->dev,
+ dev_warn(&data->client->dev,
"Failed to enable specified Vid supply\n");
return ret;
}
@@ -416,11 +403,8 @@ static int ak8975_power_on(struct i2c_client *client)
}
/* Disable attached power regulator if any. */
-static void ak8975_power_off(const struct i2c_client *client)
+static void ak8975_power_off(const struct ak8975_data *data)
{
- const struct iio_dev *indio_dev = i2c_get_clientdata(client);
- const struct ak8975_data *data = iio_priv(indio_dev);
-
regulator_disable(data->vid);
regulator_disable(data->vdd);
}
@@ -932,7 +916,15 @@ static int ak8975_probe(struct i2c_client *client,
data->def = &ak_def_array[chipset];
- err = ak8975_power_on(client);
+ /* Fetch the regulators */
+ data->vdd = devm_regulator_get(&client->dev, "vdd");
+ if (IS_ERR(data->vdd))
+ return PTR_ERR(data->vdd);
+ data->vid = devm_regulator_get(&client->dev, "vid");
+ if (IS_ERR(data->vid))
+ return PTR_ERR(data->vid);
+
+ err = ak8975_power_on(data);
if (err)
return err;
--
2.4.11
next prev parent reply other threads:[~2016-06-21 22:18 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-21 22:18 [PATCH 0/5] fix regulators and PM for AK8975 Linus Walleij
2016-06-21 22:18 ` [PATCH 1/5] iio: magn: ak8975: fix regulator usage Linus Walleij
2016-06-22 11:53 ` Gregor Boirie
2016-06-22 15:41 ` Linus Walleij
2016-06-23 10:48 ` Mark Brown
2016-06-21 22:18 ` [PATCH 2/5] iio: magn: ak8975: add Vid regulator Linus Walleij
2016-06-21 22:18 ` Linus Walleij [this message]
2016-06-21 22:18 ` [PATCH 4/5] iio: magn: ak8975: allow a delay after enabling regulators Linus Walleij
2016-06-21 22:18 ` [PATCH 5/5] iio: magn: ak8975: deploy runtime PM Linus Walleij
2016-06-22 9:26 ` Ulf Hansson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1466547498-15484-4-git-send-email-linus.walleij@linaro.org \
--to=linus.walleij@linaro.org \
--cc=dev@g0hl1n.net \
--cc=gregor.boirie@parrot.com \
--cc=gwendal@chromium.org \
--cc=jic23@kernel.org \
--cc=k.kozlowski@samsung.com \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).