From: Jonathan Cameron <jic23@kernel.org>
To: Lars-Peter Clausen <lars@metafoo.de>
Cc: Jonathan Cameron <jic23@cam.ac.uk>,
Michael Hennerich <michael.hennerich@analog.com>,
linux-iio@vger.kernel.org,
device-drivers-devel@blackfin.uclinux.org, drivers@analog.com
Subject: Re: [PATCH 06/10] staging:iio:accel:adis16201: Use new ringbuffer setup helper function
Date: Thu, 01 Dec 2011 20:56:01 +0000 [thread overview]
Message-ID: <4ED7E9E1.3020208@kernel.org> (raw)
In-Reply-To: <1322749170-21407-7-git-send-email-lars@metafoo.de>
On 12/01/2011 02:19 PM, Lars-Peter Clausen wrote:
> Use the new ringbuffer setup helper function to allocate and register buffer and
> pollfunc.
>
> Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Jonathan Cameron <jic23@kernel.org>
> ---
> drivers/staging/iio/accel/adis16201_core.c | 11 --------
> drivers/staging/iio/accel/adis16201_ring.c | 38 ++++-----------------------
> 2 files changed, 6 insertions(+), 43 deletions(-)
>
> diff --git a/drivers/staging/iio/accel/adis16201_core.c b/drivers/staging/iio/accel/adis16201_core.c
> index ed97da2..29e3c91 100644
> --- a/drivers/staging/iio/accel/adis16201_core.c
> +++ b/drivers/staging/iio/accel/adis16201_core.c
> @@ -491,14 +491,6 @@ static int __devinit adis16201_probe(struct spi_device *spi)
> if (ret)
> goto error_free_dev;
>
> - ret = iio_buffer_register(indio_dev,
> - adis16201_channels,
> - ARRAY_SIZE(adis16201_channels));
> - if (ret) {
> - printk(KERN_ERR "failed to initialize the ring\n");
> - goto error_unreg_ring_funcs;
> - }
> -
> if (spi->irq) {
> ret = adis16201_probe_trigger(indio_dev);
> if (ret)
> @@ -518,8 +510,6 @@ static int __devinit adis16201_probe(struct spi_device *spi)
> error_remove_trigger:
> adis16201_remove_trigger(indio_dev);
> error_uninitialize_ring:
> - iio_buffer_unregister(indio_dev);
> -error_unreg_ring_funcs:
> adis16201_unconfigure_ring(indio_dev);
> error_free_dev:
> iio_free_device(indio_dev);
> @@ -533,7 +523,6 @@ static int adis16201_remove(struct spi_device *spi)
>
> iio_device_unregister(indio_dev);
> adis16201_remove_trigger(indio_dev);
> - iio_buffer_unregister(indio_dev);
> adis16201_unconfigure_ring(indio_dev);
> iio_free_device(indio_dev);
>
> diff --git a/drivers/staging/iio/accel/adis16201_ring.c b/drivers/staging/iio/accel/adis16201_ring.c
> index 97f9e6b..882a1e3 100644
> --- a/drivers/staging/iio/accel/adis16201_ring.c
> +++ b/drivers/staging/iio/accel/adis16201_ring.c
> @@ -94,44 +94,18 @@ static irqreturn_t adis16201_trigger_handler(int irq, void *p)
>
> void adis16201_unconfigure_ring(struct iio_dev *indio_dev)
> {
> - iio_dealloc_pollfunc(indio_dev->pollfunc);
> - iio_sw_rb_free(indio_dev->buffer);
> + iio_sw_rb_simple_cleanup(indio_dev);
> }
>
> -static const struct iio_buffer_setup_ops adis16201_ring_setup_ops = {
> - .preenable = &iio_sw_buffer_preenable,
> - .postenable = &iio_triggered_buffer_postenable,
> - .predisable = &iio_triggered_buffer_predisable,
> -};
> -
> int adis16201_configure_ring(struct iio_dev *indio_dev)
> {
> - int ret = 0;
> - struct iio_buffer *ring;
> + int ret;
>
> - ring = iio_sw_rb_allocate(indio_dev);
> - if (!ring) {
> - ret = -ENOMEM;
> + ret = iio_sw_rb_simple_setup(indio_dev, &iio_pollfunc_store_time,
> + &adis16201_trigger_handler);
> + if (ret)
> return ret;
> - }
> - indio_dev->buffer = ring;
> - ring->scan_timestamp = true;
> - indio_dev->setup_ops = &adis16201_ring_setup_ops;
> -
> - indio_dev->pollfunc = iio_alloc_pollfunc(&iio_pollfunc_store_time,
> - &adis16201_trigger_handler,
> - IRQF_ONESHOT,
> - indio_dev,
> - "adis16201_consumer%d",
> - indio_dev->id);
> - if (indio_dev->pollfunc == NULL) {
> - ret = -ENOMEM;
> - goto error_iio_sw_rb_free;
> - }
>
> - indio_dev->modes |= INDIO_BUFFER_TRIGGERED;
> + indio_dev->buffer->scan_timestamp = true;
> return 0;
> -error_iio_sw_rb_free:
> - iio_sw_rb_free(indio_dev->buffer);
> - return ret;
> }
next prev parent reply other threads:[~2011-12-01 20:56 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-01 14:19 [PATCH 01/10] staging:iio: Add wrapper functions around buffer access ops Lars-Peter Clausen
2011-12-01 14:19 ` [PATCH 02/10] staging:iio: Setup buffer access functions when allocating the buffer Lars-Peter Clausen
2011-12-01 20:48 ` Jonathan Cameron
2011-12-01 14:19 ` [PATCH 03/10] staging:iio:ring_sw: Add helper function for initializing simple setups Lars-Peter Clausen
2011-12-01 20:51 ` Jonathan Cameron
2011-12-01 14:19 ` [PATCH 04/10] staging:iio:imu:adis16400: Use new ringbuffer setup helper function Lars-Peter Clausen
2011-12-01 20:53 ` Jonathan Cameron
2011-12-01 14:19 ` [PATCH 05/10] staging:iio:gyro:adis16260: " Lars-Peter Clausen
2011-12-01 20:55 ` Jonathan Cameron
2011-12-03 10:44 ` Lars-Peter Clausen
2011-12-04 17:21 ` Jonathan Cameron
2011-12-01 14:19 ` [PATCH 06/10] staging:iio:accel:adis16201: " Lars-Peter Clausen
2011-12-01 20:56 ` Jonathan Cameron [this message]
2011-12-01 14:19 ` [PATCH 07/10] staging:iio:adc:max1363: " Lars-Peter Clausen
2011-12-01 20:58 ` Jonathan Cameron
2011-12-01 14:19 ` [PATCH 08/10] staging:iio:adc:ad7476: " Lars-Peter Clausen
2011-12-01 20:59 ` Jonathan Cameron
2011-12-01 14:19 ` [PATCH 09/10] staging:iio:adc:ad799x: " Lars-Peter Clausen
2011-12-01 21:00 ` Jonathan Cameron
2011-12-01 14:19 ` [PATCH 10/10] staging:iio:adc:ad7298: " Lars-Peter Clausen
2011-12-01 21:02 ` Jonathan Cameron
2011-12-01 20:40 ` [PATCH 01/10] staging:iio: Add wrapper functions around buffer access ops Jonathan Cameron
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=4ED7E9E1.3020208@kernel.org \
--to=jic23@kernel.org \
--cc=device-drivers-devel@blackfin.uclinux.org \
--cc=drivers@analog.com \
--cc=jic23@cam.ac.uk \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=michael.hennerich@analog.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.