Commit 9da32866 authored by Nuno Sá's avatar Nuno Sá Committed by Jonathan Cameron

staging: iio: adis16240: Use Managed device functions

Use the adis managed device functions to setup the buffer and the trigger.
The ultimate goal will be to completely drop the non devm version from
the lib.

Since we are here, drop the `.remove` callback by further using devm
functions.
Signed-off-by: default avatarNuno Sá <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20200915120258.161587-10-nuno.sa@analog.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 460c7b4c
...@@ -415,35 +415,17 @@ static int adis16240_probe(struct spi_device *spi) ...@@ -415,35 +415,17 @@ static int adis16240_probe(struct spi_device *spi)
ret = adis_init(st, indio_dev, spi, &adis16240_data); ret = adis_init(st, indio_dev, spi, &adis16240_data);
if (ret) if (ret)
return ret; return ret;
ret = adis_setup_buffer_and_trigger(st, indio_dev, NULL); ret = devm_adis_setup_buffer_and_trigger(st, indio_dev, NULL);
if (ret) if (ret)
return ret; return ret;
/* Get the device into a sane initial state */ /* Get the device into a sane initial state */
ret = adis_initial_startup(st); ret = adis_initial_startup(st);
if (ret) if (ret)
goto error_cleanup_buffer_trigger;
ret = iio_device_register(indio_dev);
if (ret)
goto error_cleanup_buffer_trigger;
return 0;
error_cleanup_buffer_trigger:
adis_cleanup_buffer_and_trigger(st, indio_dev);
return ret; return ret;
}
static int adis16240_remove(struct spi_device *spi)
{
struct iio_dev *indio_dev = spi_get_drvdata(spi);
struct adis *st = iio_priv(indio_dev);
iio_device_unregister(indio_dev); return devm_iio_device_register(&spi->dev, indio_dev);
adis_cleanup_buffer_and_trigger(st, indio_dev);
return 0;
} }
static const struct of_device_id adis16240_of_match[] = { static const struct of_device_id adis16240_of_match[] = {
{ .compatible = "adi,adis16240" }, { .compatible = "adi,adis16240" },
{ }, { },
...@@ -456,7 +438,6 @@ static struct spi_driver adis16240_driver = { ...@@ -456,7 +438,6 @@ static struct spi_driver adis16240_driver = {
.of_match_table = adis16240_of_match, .of_match_table = adis16240_of_match,
}, },
.probe = adis16240_probe, .probe = adis16240_probe,
.remove = adis16240_remove,
}; };
module_spi_driver(adis16240_driver); module_spi_driver(adis16240_driver);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment