From: Denis CIOCCA <denis.ciocca@st.com>
To: linux-iio@vger.kernel.org
Cc: Denis Ciocca <denis.ciocca@st.com>
Subject: [PATCH 3/4] iio:magnetometer: call device unregister function if common_proble fails
Date: Fri, 14 Feb 2014 15:55:17 +0100 [thread overview]
Message-ID: <1392389718-26079-3-git-send-email-denis.ciocca@st.com> (raw)
In-Reply-To: <1392389718-26079-1-git-send-email-denis.ciocca@st.com>
If st_magn_common_probe function fails, the device must be unregistered.
Used devm_iio_device_unregister function instead of iio_device_unregister
also in the common remove function.
Signed-off-by: Denis Ciocca <denis.ciocca@st.com>
---
drivers/iio/magnetometer/st_magn_core.c | 2 +-
drivers/iio/magnetometer/st_magn_i2c.c | 6 +++++-
drivers/iio/magnetometer/st_magn_spi.c | 6 +++++-
3 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/drivers/iio/magnetometer/st_magn_core.c b/drivers/iio/magnetometer/st_magn_core.c
index 52bbcfa..344b9cd 100644
--- a/drivers/iio/magnetometer/st_magn_core.c
+++ b/drivers/iio/magnetometer/st_magn_core.c
@@ -403,7 +403,7 @@ void st_magn_common_remove(struct iio_dev *indio_dev)
{
struct st_sensor_data *mdata = iio_priv(indio_dev);
- iio_device_unregister(indio_dev);
+ devm_iio_device_unregister(mdata->dev, indio_dev);
if (mdata->get_irq_data_ready(indio_dev) > 0)
st_sensors_deallocate_trigger(indio_dev);
diff --git a/drivers/iio/magnetometer/st_magn_i2c.c b/drivers/iio/magnetometer/st_magn_i2c.c
index 892e0fe..02c6da1 100644
--- a/drivers/iio/magnetometer/st_magn_i2c.c
+++ b/drivers/iio/magnetometer/st_magn_i2c.c
@@ -36,9 +36,13 @@ static int st_magn_i2c_probe(struct i2c_client *client,
err = st_magn_common_probe(indio_dev, NULL);
if (err < 0)
- return err;
+ goto device_unregister;
return 0;
+
+device_unregister:
+ devm_iio_device_unregister(&client->dev, indio_dev);
+ return err;
}
static int st_magn_i2c_remove(struct i2c_client *client)
diff --git a/drivers/iio/magnetometer/st_magn_spi.c b/drivers/iio/magnetometer/st_magn_spi.c
index a6143ea..5c2f6fa 100644
--- a/drivers/iio/magnetometer/st_magn_spi.c
+++ b/drivers/iio/magnetometer/st_magn_spi.c
@@ -35,9 +35,13 @@ static int st_magn_spi_probe(struct spi_device *spi)
err = st_magn_common_probe(indio_dev, NULL);
if (err < 0)
- return err;
+ goto device_unregister;
return 0;
+
+device_unregister:
+ devm_iio_device_unregister(&spi->dev, indio_dev);
+ return err;
}
static int st_magn_spi_remove(struct spi_device *spi)
--
1.8.5.4
next prev parent reply other threads:[~2014-02-14 14:55 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-14 14:55 [PATCH 1/4] iio:accel: call device unregister function if common_proble fails Denis CIOCCA
2014-02-14 14:55 ` [PATCH 2/4] iio:gyro: " Denis CIOCCA
2014-02-14 14:55 ` Denis CIOCCA [this message]
2014-02-14 14:55 ` [PATCH 4/4] iio:pressure: " Denis CIOCCA
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=1392389718-26079-3-git-send-email-denis.ciocca@st.com \
--to=denis.ciocca@st.com \
--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).