diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-08-24 14:48:00 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2013-08-28 15:20:24 -0400 |
commit | cdfb09a40dc9cd71e86f458353ddd3cdeecd5ace (patch) | |
tree | d09683b15ffdb606a260ce41d895cb9738807de7 | |
parent | 69fad8aa4dc81e04427faf2a9a43a615fb618cb2 (diff) |
staging: iio: adis16204: Use devm_iio_device_alloc
Using devm_iio_device_alloc makes code simpler.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
-rw-r--r-- | drivers/staging/iio/accel/adis16204_core.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/drivers/staging/iio/accel/adis16204_core.c b/drivers/staging/iio/accel/adis16204_core.c index 792ec25a50dc..b8ea76857cd6 100644 --- a/drivers/staging/iio/accel/adis16204_core.c +++ b/drivers/staging/iio/accel/adis16204_core.c | |||
@@ -187,11 +187,9 @@ static int adis16204_probe(struct spi_device *spi) | |||
187 | struct iio_dev *indio_dev; | 187 | struct iio_dev *indio_dev; |
188 | 188 | ||
189 | /* setup the industrialio driver allocated elements */ | 189 | /* setup the industrialio driver allocated elements */ |
190 | indio_dev = iio_device_alloc(sizeof(*st)); | 190 | indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st)); |
191 | if (indio_dev == NULL) { | 191 | if (!indio_dev) |
192 | ret = -ENOMEM; | 192 | return -ENOMEM; |
193 | goto error_ret; | ||
194 | } | ||
195 | st = iio_priv(indio_dev); | 193 | st = iio_priv(indio_dev); |
196 | /* this is only used for removal purposes */ | 194 | /* this is only used for removal purposes */ |
197 | spi_set_drvdata(spi, indio_dev); | 195 | spi_set_drvdata(spi, indio_dev); |
@@ -205,11 +203,11 @@ static int adis16204_probe(struct spi_device *spi) | |||
205 | 203 | ||
206 | ret = adis_init(st, indio_dev, spi, &adis16204_data); | 204 | ret = adis_init(st, indio_dev, spi, &adis16204_data); |
207 | if (ret) | 205 | if (ret) |
208 | goto error_free_dev; | 206 | return ret; |
209 | 207 | ||
210 | ret = adis_setup_buffer_and_trigger(st, indio_dev, NULL); | 208 | ret = adis_setup_buffer_and_trigger(st, indio_dev, NULL); |
211 | if (ret) | 209 | if (ret) |
212 | goto error_free_dev; | 210 | return ret; |
213 | 211 | ||
214 | /* Get the device into a sane initial state */ | 212 | /* Get the device into a sane initial state */ |
215 | ret = adis_initial_startup(st); | 213 | ret = adis_initial_startup(st); |
@@ -223,9 +221,6 @@ static int adis16204_probe(struct spi_device *spi) | |||
223 | 221 | ||
224 | error_cleanup_buffer_trigger: | 222 | error_cleanup_buffer_trigger: |
225 | adis_cleanup_buffer_and_trigger(st, indio_dev); | 223 | adis_cleanup_buffer_and_trigger(st, indio_dev); |
226 | error_free_dev: | ||
227 | iio_device_free(indio_dev); | ||
228 | error_ret: | ||
229 | return ret; | 224 | return ret; |
230 | } | 225 | } |
231 | 226 | ||
@@ -236,7 +231,6 @@ static int adis16204_remove(struct spi_device *spi) | |||
236 | 231 | ||
237 | iio_device_unregister(indio_dev); | 232 | iio_device_unregister(indio_dev); |
238 | adis_cleanup_buffer_and_trigger(st, indio_dev); | 233 | adis_cleanup_buffer_and_trigger(st, indio_dev); |
239 | iio_device_free(indio_dev); | ||
240 | 234 | ||
241 | return 0; | 235 | return 0; |
242 | } | 236 | } |