linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/8] staging: iio: adis16201: Use devm_iio_device_alloc
@ 2013-08-24 18:48 Sachin Kamat
  2013-08-24 18:48 ` [PATCH 2/8] staging: iio: adis16203: " Sachin Kamat
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Sachin Kamat @ 2013-08-24 18:48 UTC (permalink / raw)
  To: linux-iio; +Cc: jic23, jic23, sachin.kamat, lars

Using devm_iio_device_alloc makes code simpler.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/staging/iio/accel/adis16201_core.c |   17 ++++++-----------
 1 files changed, 6 insertions(+), 11 deletions(-)

diff --git a/drivers/staging/iio/accel/adis16201_core.c b/drivers/staging/iio/accel/adis16201_core.c
index ab8ec7a..2105576 100644
--- a/drivers/staging/iio/accel/adis16201_core.c
+++ b/drivers/staging/iio/accel/adis16201_core.c
@@ -182,11 +182,10 @@ static int adis16201_probe(struct spi_device *spi)
 	struct iio_dev *indio_dev;
 
 	/* setup the industrialio driver allocated elements */
-	indio_dev = iio_device_alloc(sizeof(*st));
-	if (indio_dev == NULL) {
-		ret = -ENOMEM;
-		goto error_ret;
-	}
+	indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
+	if (!indio_dev)
+		return -ENOMEM;
+
 	st = iio_priv(indio_dev);
 	/* this is only used for removal purposes */
 	spi_set_drvdata(spi, indio_dev);
@@ -201,10 +200,10 @@ static int adis16201_probe(struct spi_device *spi)
 
 	ret = adis_init(st, indio_dev, spi, &adis16201_data);
 	if (ret)
-		goto error_free_dev;
+		return ret;
 	ret = adis_setup_buffer_and_trigger(st, indio_dev, NULL);
 	if (ret)
-		goto error_free_dev;
+		return ret;
 
 	/* Get the device into a sane initial state */
 	ret = adis_initial_startup(st);
@@ -218,9 +217,6 @@ static int adis16201_probe(struct spi_device *spi)
 
 error_cleanup_buffer_trigger:
 	adis_cleanup_buffer_and_trigger(st, indio_dev);
-error_free_dev:
-	iio_device_free(indio_dev);
-error_ret:
 	return ret;
 }
 
@@ -231,7 +227,6 @@ static int adis16201_remove(struct spi_device *spi)
 
 	iio_device_unregister(indio_dev);
 	adis_cleanup_buffer_and_trigger(st, indio_dev);
-	iio_device_free(indio_dev);
 
 	return 0;
 }
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-08-28 19:21 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-24 18:48 [PATCH 1/8] staging: iio: adis16201: Use devm_iio_device_alloc Sachin Kamat
2013-08-24 18:48 ` [PATCH 2/8] staging: iio: adis16203: " Sachin Kamat
2013-08-24 18:48 ` [PATCH 3/8] staging: iio: adis16204: " Sachin Kamat
2013-08-24 18:48 ` [PATCH 4/8] staging: iio: adis16209: " Sachin Kamat
2013-08-24 18:48 ` [PATCH 5/8] staging: iio: adis16220: " Sachin Kamat
2013-08-24 18:48 ` [PATCH 6/8] staging: iio: adis16240: " Sachin Kamat
2013-08-24 18:48 ` [PATCH 7/8] staging: iio: lis3l02dq: " Sachin Kamat
2013-08-24 18:48 ` [PATCH 8/8] staging: iio: sca3000: " Sachin Kamat
2013-08-28 19:21 ` [PATCH 1/8] staging: iio: adis16201: " Jonathan Cameron

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).