On 06/06/2012 12:55 PM, Lars-Peter Clausen wrote: > Use the new triggered buffer setup helper function to allocate and register > buffer and pollfunc. > same select issue to fix before sending to Greg... > Signed-off-by: Lars-Peter Clausen <lars@xxxxxxxxxx> Acked-by: Jonathan Cameron <jic23@xxxxxxxxxx> > --- > drivers/staging/iio/adc/Kconfig | 1 + > drivers/staging/iio/adc/ad7793.c | 47 ++++---------------------------------- > 2 files changed, 6 insertions(+), 42 deletions(-) > > diff --git a/drivers/staging/iio/adc/Kconfig b/drivers/staging/iio/adc/Kconfig > index 4761c58..d654cd3 100644 > --- a/drivers/staging/iio/adc/Kconfig > +++ b/drivers/staging/iio/adc/Kconfig > @@ -118,6 +118,7 @@ config AD7793 > select IIO_BUFFER > select IIO_KFIFO_BUF > select IIO_TRIGGER Again, excess select statements... > + select IIO_TRIGGERED_BUFFER > help > Say yes here to build support for Analog Devices > AD7792 and AD7793 SPI analog to digital converters (ADC). > diff --git a/drivers/staging/iio/adc/ad7793.c b/drivers/staging/iio/adc/ad7793.c > index b36556f..6c70914 100644 > --- a/drivers/staging/iio/adc/ad7793.c > +++ b/drivers/staging/iio/adc/ad7793.c > @@ -407,41 +407,13 @@ static const struct iio_buffer_setup_ops ad7793_ring_setup_ops = { > > static int ad7793_register_ring_funcs_and_init(struct iio_dev *indio_dev) > { > - int ret; > - > - indio_dev->buffer = iio_kfifo_allocate(indio_dev); > - if (!indio_dev->buffer) { > - ret = -ENOMEM; > - goto error_ret; > - } > - indio_dev->pollfunc = iio_alloc_pollfunc(&iio_pollfunc_store_time, > - &ad7793_trigger_handler, > - IRQF_ONESHOT, > - indio_dev, > - "ad7793_consumer%d", > - indio_dev->id); > - if (indio_dev->pollfunc == NULL) { > - ret = -ENOMEM; > - goto error_deallocate_kfifo; > - } > - > - /* Ring buffer functions - here trigger setup related */ > - indio_dev->setup_ops = &ad7793_ring_setup_ops; > - > - /* Flag that polled ring buffering is possible */ > - indio_dev->modes |= INDIO_BUFFER_TRIGGERED; > - return 0; > - > -error_deallocate_kfifo: > - iio_kfifo_free(indio_dev->buffer); > -error_ret: > - return ret; > + return iio_triggered_buffer_setup(indio_dev, &iio_pollfunc_store_time, > + &ad7793_trigger_handler, &ad7793_ring_setup_ops); > } > > static void ad7793_ring_cleanup(struct iio_dev *indio_dev) > { > - iio_dealloc_pollfunc(indio_dev->pollfunc); > - iio_kfifo_free(indio_dev->buffer); > + iio_triggered_buffer_cleanup(indio_dev); > } > > /** > @@ -959,24 +931,16 @@ static int __devinit ad7793_probe(struct spi_device *spi) > if (ret) > goto error_unreg_ring; > > - ret = iio_buffer_register(indio_dev, > - indio_dev->channels, > - indio_dev->num_channels); > - if (ret) > - goto error_remove_trigger; > - > ret = ad7793_setup(st); > if (ret) > - goto error_uninitialize_ring; > + goto error_remove_trigger; > > ret = iio_device_register(indio_dev); > if (ret) > - goto error_uninitialize_ring; > + goto error_remove_trigger; > > return 0; > > -error_uninitialize_ring: > - iio_buffer_unregister(indio_dev); > error_remove_trigger: > ad7793_remove_trigger(indio_dev); > error_unreg_ring: > @@ -999,7 +963,6 @@ static int ad7793_remove(struct spi_device *spi) > struct ad7793_state *st = iio_priv(indio_dev); > > iio_device_unregister(indio_dev); > - iio_buffer_unregister(indio_dev); > ad7793_remove_trigger(indio_dev); > ad7793_ring_cleanup(indio_dev); > -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html