From: Jonathan Cameron <jic23@kernel.org>
To: linux-iio@vger.kernel.org,
Andy Shevchenko <andy.shevchenko@gmail.com>,
Alexandru Ardelean <aardelean@deviqon.com>
Cc: Lars-Peter Clausen <lars@metafoo.de>,
Jonathan Cameron <Jonathan.Cameron@huawei.com>
Subject: [PATCH v3 5/5] iio: accel: mma9553: Use devm managed functions to tidy up probe()
Date: Sun, 5 Dec 2021 20:02:50 +0000 [thread overview]
Message-ID: <20211205200250.2840902-6-jic23@kernel.org> (raw)
In-Reply-To: <20211205200250.2840902-1-jic23@kernel.org>
From: Jonathan Cameron <Jonathan.Cameron@huawei.com>
The error handling in here left runtime pm enabled, and didn't do the
same steps as occurred in remove. Moving over to fully devm_ managed
makes it harder to get this stuff wrong, so let's do that.
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Alexandru Ardelean <aardelean@deviqon.com>
---
drivers/iio/accel/mma9553.c | 70 ++++++++++++++++++++-----------------
1 file changed, 37 insertions(+), 33 deletions(-)
diff --git a/drivers/iio/accel/mma9553.c b/drivers/iio/accel/mma9553.c
index c24384089714..72b50495c842 100644
--- a/drivers/iio/accel/mma9553.c
+++ b/drivers/iio/accel/mma9553.c
@@ -375,6 +375,15 @@ static int mma9553_conf_gpio(struct mma9553_data *data)
return 0;
}
+static void mma9553_disable_cb(void *_data)
+{
+ struct mma9553_data *data = _data;
+
+ mutex_lock(&data->mutex);
+ mma9551_set_device_state(data->client, false);
+ mutex_unlock(&data->mutex);
+}
+
static int mma9553_init(struct mma9553_data *data)
{
int ret;
@@ -430,7 +439,11 @@ static int mma9553_init(struct mma9553_data *data)
return ret;
}
- return mma9551_set_device_state(data->client, true);
+ ret = mma9551_set_device_state(data->client, true);
+ if (ret)
+ return ret;
+
+ return devm_add_action_or_reset(&data->client->dev, mma9553_disable_cb, data);
}
static int mma9553_read_status_word(struct mma9553_data *data, u16 reg,
@@ -1062,6 +1075,16 @@ static irqreturn_t mma9553_event_handler(int irq, void *private)
return IRQ_HANDLED;
}
+static void mma9553_rpm_set_susp(void *d)
+{
+ pm_runtime_set_suspended(d);
+}
+
+static void mma9553_rpm_disable(void *d)
+{
+ pm_runtime_disable(d);
+}
+
static int mma9553_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
@@ -1105,48 +1128,30 @@ static int mma9553_probe(struct i2c_client *client,
if (ret < 0) {
dev_err(&client->dev, "request irq %d failed\n",
client->irq);
- goto out_poweroff;
+ return ret;
}
}
ret = pm_runtime_set_active(&client->dev);
if (ret < 0)
- goto out_poweroff;
+ return ret;
+
+ ret = devm_add_action_or_reset(&client->dev, mma9553_rpm_set_susp,
+ &client->dev);
+ if (ret)
+ return ret;
pm_runtime_enable(&client->dev);
+ ret = devm_add_action_or_reset(&client->dev, mma9553_rpm_disable,
+ &client->dev);
+ if (ret)
+ return ret;
+
pm_runtime_set_autosuspend_delay(&client->dev,
MMA9551_AUTO_SUSPEND_DELAY_MS);
pm_runtime_use_autosuspend(&client->dev);
- ret = iio_device_register(indio_dev);
- if (ret < 0) {
- dev_err(&client->dev, "unable to register iio device\n");
- goto out_poweroff;
- }
-
- dev_dbg(&indio_dev->dev, "Registered device %s\n", name);
- return 0;
-
-out_poweroff:
- mma9551_set_device_state(client, false);
- return ret;
-}
-
-static int mma9553_remove(struct i2c_client *client)
-{
- struct iio_dev *indio_dev = i2c_get_clientdata(client);
- struct mma9553_data *data = iio_priv(indio_dev);
-
- iio_device_unregister(indio_dev);
-
- pm_runtime_disable(&client->dev);
- pm_runtime_set_suspended(&client->dev);
-
- mutex_lock(&data->mutex);
- mma9551_set_device_state(data->client, false);
- mutex_unlock(&data->mutex);
-
- return 0;
+ return devm_iio_device_register(&client->dev, indio_dev);
}
static __maybe_unused int mma9553_runtime_suspend(struct device *dev)
@@ -1200,7 +1205,6 @@ static struct i2c_driver mma9553_driver = {
.pm = &mma9553_pm_ops,
},
.probe = mma9553_probe,
- .remove = mma9553_remove,
.id_table = mma9553_id,
};
--
2.34.1
prev parent reply other threads:[~2021-12-05 19:57 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-05 20:02 [PATCH v3 0/5] iio: accel: mma9551/mma9553 Cleanup and update Jonathan Cameron
2021-12-05 20:02 ` [PATCH v3 1/5] iio: accel: mma9551/mma9553: Drop explicit ACPI match support Jonathan Cameron
2021-12-05 20:02 ` [PATCH v3 2/5] iio: accel: mma9551/mma9553: Simplify pm logic Jonathan Cameron
2021-12-05 20:02 ` [PATCH v3 3/5] iio: accel: mma9551: Add support to get irqs directly from fwnode Jonathan Cameron
2021-12-05 20:39 ` Andy Shevchenko
2021-12-06 19:18 ` Jonathan Cameron
2021-12-05 20:02 ` [PATCH v3 4/5] iio: accel: mma9551: Use devm managed functions to tidy up probe() Jonathan Cameron
2021-12-05 20:02 ` Jonathan Cameron [this message]
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=20211205200250.2840902-6-jic23@kernel.org \
--to=jic23@kernel.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=aardelean@deviqon.com \
--cc=andy.shevchenko@gmail.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