mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-13 01:08:50 +00:00
staging:iio:buffering cleanup ring_buffer_register_ex naming.
Now the old method is long gone, lets get rid of the _ex and whilst here remove the unused id parameter. Trivial mechanical change, but will break any out of tree drivers using this. V2: rebase V3: rebase Signed-off-by: Jonathan Cameron <jic23@cam.ac.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
6446e9cd2c
commit
c009f7e426
@ -497,7 +497,7 @@ static int __devinit adis16201_probe(struct spi_device *spi)
|
||||
goto error_unreg_ring_funcs;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
adis16201_channels,
|
||||
ARRAY_SIZE(adis16201_channels));
|
||||
if (ret) {
|
||||
|
@ -451,7 +451,7 @@ static int __devinit adis16203_probe(struct spi_device *spi)
|
||||
goto error_unreg_ring_funcs;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
adis16203_channels,
|
||||
ARRAY_SIZE(adis16203_channels));
|
||||
if (ret) {
|
||||
|
@ -526,7 +526,7 @@ static int __devinit adis16204_probe(struct spi_device *spi)
|
||||
goto error_unreg_ring_funcs;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
adis16204_channels,
|
||||
ARRAY_SIZE(adis16204_channels));
|
||||
if (ret) {
|
||||
|
@ -499,7 +499,7 @@ static int __devinit adis16209_probe(struct spi_device *spi)
|
||||
goto error_unreg_ring_funcs;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
adis16209_channels,
|
||||
ARRAY_SIZE(adis16209_channels));
|
||||
if (ret) {
|
||||
|
@ -552,7 +552,7 @@ static int __devinit adis16240_probe(struct spi_device *spi)
|
||||
goto error_unreg_ring_funcs;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
adis16240_channels,
|
||||
ARRAY_SIZE(adis16240_channels));
|
||||
if (ret) {
|
||||
|
@ -695,7 +695,7 @@ static int __devinit lis3l02dq_probe(struct spi_device *spi)
|
||||
goto error_unreg_ring_funcs;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
lis3l02dq_channels,
|
||||
ARRAY_SIZE(lis3l02dq_channels));
|
||||
if (ret) {
|
||||
|
@ -1156,7 +1156,7 @@ static int __devinit sca3000_probe(struct spi_device *spi)
|
||||
if (ret < 0)
|
||||
goto error_free_dev;
|
||||
regdone = 1;
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
sca3000_channels,
|
||||
ARRAY_SIZE(sca3000_channels));
|
||||
if (ret < 0)
|
||||
|
@ -1098,7 +1098,7 @@ static int __devinit ad7192_probe(struct spi_device *spi)
|
||||
if (ret)
|
||||
goto error_unreg_ring;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
indio_dev->channels,
|
||||
indio_dev->num_channels);
|
||||
if (ret)
|
||||
|
@ -223,7 +223,7 @@ static int __devinit ad7298_probe(struct spi_device *spi)
|
||||
goto error_disable_reg;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
&ad7298_channels[1], /* skip temp0 */
|
||||
ARRAY_SIZE(ad7298_channels) - 1);
|
||||
if (ret)
|
||||
|
@ -186,7 +186,7 @@ static int __devinit ad7476_probe(struct spi_device *spi)
|
||||
if (ret)
|
||||
goto error_disable_reg;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
st->chip_info->channel,
|
||||
ARRAY_SIZE(st->chip_info->channel));
|
||||
if (ret)
|
||||
|
@ -506,7 +506,7 @@ struct iio_dev *ad7606_probe(struct device *dev, int irq,
|
||||
goto error_free_irq;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
indio_dev->channels,
|
||||
indio_dev->num_channels);
|
||||
if (ret)
|
||||
|
@ -895,7 +895,7 @@ static int __devinit ad7793_probe(struct spi_device *spi)
|
||||
if (ret)
|
||||
goto error_unreg_ring;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
indio_dev->channels,
|
||||
indio_dev->num_channels);
|
||||
if (ret)
|
||||
|
@ -194,7 +194,7 @@ static int __devinit ad7887_probe(struct spi_device *spi)
|
||||
goto error_disable_reg;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
indio_dev->channels,
|
||||
indio_dev->num_channels);
|
||||
if (ret)
|
||||
|
@ -706,7 +706,7 @@ static int __devinit ad799x_probe(struct i2c_client *client,
|
||||
goto error_cleanup_ring;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
indio_dev->channels,
|
||||
indio_dev->num_channels);
|
||||
if (ret)
|
||||
|
@ -1313,7 +1313,7 @@ static int __devinit max1363_probe(struct i2c_client *client,
|
||||
if (ret)
|
||||
goto error_cleanup_ring;
|
||||
regdone = 1;
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
st->chip_info->channels,
|
||||
st->chip_info->num_channels);
|
||||
if (ret)
|
||||
|
@ -629,7 +629,7 @@ static int __devinit adis16260_probe(struct spi_device *spi)
|
||||
if (ret)
|
||||
goto error_unreg_ring_funcs;
|
||||
regdone = 1;
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
indio_dev->channels,
|
||||
ARRAY_SIZE(adis16260_channels_x));
|
||||
if (ret) {
|
||||
|
@ -733,7 +733,7 @@ static int __devinit ad5933_probe(struct i2c_client *client,
|
||||
regdone = 1;
|
||||
|
||||
/* skip temp0_input, register in0_(real|imag)_raw */
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0, &ad5933_channels[1], 2);
|
||||
ret = iio_ring_buffer_register(indio_dev, &ad5933_channels[1], 2);
|
||||
if (ret)
|
||||
goto error_unreg_ring;
|
||||
|
||||
|
@ -853,7 +853,7 @@ static int __devinit adis16400_probe(struct spi_device *spi)
|
||||
goto error_unreg_ring_funcs;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
st->variant->channels,
|
||||
st->variant->num_channels);
|
||||
if (ret) {
|
||||
|
@ -277,7 +277,7 @@ static void __iio_ring_attr_cleanup(struct iio_dev *indio_dev)
|
||||
&iio_scan_el_dummy_group);
|
||||
}
|
||||
|
||||
int iio_ring_buffer_register_ex(struct iio_dev *indio_dev, int id,
|
||||
int iio_ring_buffer_register(struct iio_dev *indio_dev,
|
||||
const struct iio_chan_spec *channels,
|
||||
int num_channels)
|
||||
{
|
||||
@ -325,7 +325,7 @@ error_cleanup_dynamic:
|
||||
error_ret:
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(iio_ring_buffer_register_ex);
|
||||
EXPORT_SYMBOL(iio_ring_buffer_register);
|
||||
|
||||
void iio_ring_buffer_unregister(struct iio_dev *indio_dev)
|
||||
{
|
||||
|
@ -780,7 +780,7 @@ static int __devinit ade7758_probe(struct spi_device *spi)
|
||||
goto error_unreg_ring_funcs;
|
||||
regdone = 1;
|
||||
|
||||
ret = iio_ring_buffer_register_ex(indio_dev, 0,
|
||||
ret = iio_ring_buffer_register(indio_dev,
|
||||
&ade7758_channels[0],
|
||||
ARRAY_SIZE(ade7758_channels));
|
||||
if (ret) {
|
||||
|
@ -206,11 +206,10 @@ static inline int iio_scan_mask_set(struct iio_ring_buffer *ring, int bit)
|
||||
container_of(d, struct iio_ring_buffer, dev)
|
||||
|
||||
/**
|
||||
* iio_ring_buffer_register_ex() - register the buffer with IIO core
|
||||
* iio_ring_buffer_register() - register the buffer with IIO core
|
||||
* @indio_dev: device with the buffer to be registered
|
||||
* @id: the id of the buffer (typically 0)
|
||||
**/
|
||||
int iio_ring_buffer_register_ex(struct iio_dev *indio_dev, int id,
|
||||
int iio_ring_buffer_register(struct iio_dev *indio_dev,
|
||||
const struct iio_chan_spec *channels,
|
||||
int num_channels);
|
||||
|
||||
@ -265,8 +264,7 @@ int iio_sw_ring_preenable(struct iio_dev *indio_dev);
|
||||
|
||||
#else /* CONFIG_IIO_RING_BUFFER */
|
||||
|
||||
static inline int iio_ring_buffer_register_ex(struct iio_dev *indio_dev,
|
||||
int id,
|
||||
static inline int iio_ring_buffer_register(struct iio_dev *indio_dev,
|
||||
struct iio_chan_spec *channels,
|
||||
int num_channels)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user