staging:iio: Streamline API function naming
authorLars-Peter Clausen <lars@metafoo.de>
Thu, 26 Apr 2012 11:35:01 +0000 (13:35 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Apr 2012 01:23:49 +0000 (21:23 -0400)
Currently we use two different naming schemes in the IIO API, iio_verb_object
and iio_object_verb. E.g iio_device_register and iio_allocate_device. This
patches renames instances of the later to the former. The patch also renames allocate to
alloc as this seems to be the preferred form throughout the kernel.

In particular the following renames are performed by the patch:
iio_put_device -> iio_device_put
iio_allocate_device -> iio_device_alloc
iio_free_device -> iio_device_free
iio_get_trigger -> iio_trigger_get
iio_put_trigger -> iio_trigger_put
iio_allocate_trigger -> iio_trigger_alloc
iio_free_trigger -> iio_trigger_free

The conversion was done with the following coccinelle patch with manual fixes to
comments and documentation.

<smpl>
@@
@@
-iio_put_device
+iio_device_put
@@
@@
-iio_allocate_device
+iio_device_alloc
@@
@@
-iio_free_device
+iio_device_free
@@
@@
-iio_get_trigger
+iio_trigger_get
@@
@@
-iio_put_trigger
+iio_trigger_put
@@
@@
-iio_allocate_trigger
+iio_trigger_alloc
@@
@@
-iio_free_trigger
+iio_trigger_free
</smpl>

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
91 files changed:
drivers/iio/industrialio-core.c
drivers/iio/industrialio-trigger.c
drivers/staging/iio/Documentation/device.txt
drivers/staging/iio/Documentation/trigger.txt
drivers/staging/iio/accel/adis16201_core.c
drivers/staging/iio/accel/adis16201_trigger.c
drivers/staging/iio/accel/adis16203_core.c
drivers/staging/iio/accel/adis16203_trigger.c
drivers/staging/iio/accel/adis16204_core.c
drivers/staging/iio/accel/adis16204_trigger.c
drivers/staging/iio/accel/adis16209_core.c
drivers/staging/iio/accel/adis16209_trigger.c
drivers/staging/iio/accel/adis16220_core.c
drivers/staging/iio/accel/adis16240_core.c
drivers/staging/iio/accel/adis16240_trigger.c
drivers/staging/iio/accel/kxsd9.c
drivers/staging/iio/accel/lis3l02dq_core.c
drivers/staging/iio/accel/lis3l02dq_ring.c
drivers/staging/iio/accel/sca3000_core.c
drivers/staging/iio/adc/ad7192.c
drivers/staging/iio/adc/ad7280a.c
drivers/staging/iio/adc/ad7291.c
drivers/staging/iio/adc/ad7298_core.c
drivers/staging/iio/adc/ad7476_core.c
drivers/staging/iio/adc/ad7606_core.c
drivers/staging/iio/adc/ad7780.c
drivers/staging/iio/adc/ad7793.c
drivers/staging/iio/adc/ad7816.c
drivers/staging/iio/adc/ad7887_core.c
drivers/staging/iio/adc/ad799x_core.c
drivers/staging/iio/adc/adt7310.c
drivers/staging/iio/adc/adt7410.c
drivers/staging/iio/adc/lpc32xx_adc.c
drivers/staging/iio/adc/max1363_core.c
drivers/staging/iio/adc/spear_adc.c
drivers/staging/iio/addac/adt7316.c
drivers/staging/iio/cdc/ad7150.c
drivers/staging/iio/cdc/ad7152.c
drivers/staging/iio/cdc/ad7746.c
drivers/staging/iio/dac/ad5064.c
drivers/staging/iio/dac/ad5360.c
drivers/staging/iio/dac/ad5380.c
drivers/staging/iio/dac/ad5421.c
drivers/staging/iio/dac/ad5446.c
drivers/staging/iio/dac/ad5504.c
drivers/staging/iio/dac/ad5624r_spi.c
drivers/staging/iio/dac/ad5686.c
drivers/staging/iio/dac/ad5764.c
drivers/staging/iio/dac/ad5791.c
drivers/staging/iio/dac/max517.c
drivers/staging/iio/dds/ad5930.c
drivers/staging/iio/dds/ad9832.c
drivers/staging/iio/dds/ad9834.c
drivers/staging/iio/dds/ad9850.c
drivers/staging/iio/dds/ad9852.c
drivers/staging/iio/dds/ad9910.c
drivers/staging/iio/dds/ad9951.c
drivers/staging/iio/gyro/adis16060_core.c
drivers/staging/iio/gyro/adis16080_core.c
drivers/staging/iio/gyro/adis16130_core.c
drivers/staging/iio/gyro/adis16260_core.c
drivers/staging/iio/gyro/adis16260_trigger.c
drivers/staging/iio/gyro/adxrs450_core.c
drivers/staging/iio/iio_simple_dummy.c
drivers/staging/iio/impedance-analyzer/ad5933.c
drivers/staging/iio/imu/adis16400_core.c
drivers/staging/iio/imu/adis16400_trigger.c
drivers/staging/iio/light/isl29018.c
drivers/staging/iio/light/isl29028.c
drivers/staging/iio/light/tsl2563.c
drivers/staging/iio/light/tsl2583.c
drivers/staging/iio/light/tsl2x7x_core.c
drivers/staging/iio/magnetometer/ak8975.c
drivers/staging/iio/magnetometer/hmc5843.c
drivers/staging/iio/meter/ade7753.c
drivers/staging/iio/meter/ade7754.c
drivers/staging/iio/meter/ade7758_core.c
drivers/staging/iio/meter/ade7758_trigger.c
drivers/staging/iio/meter/ade7759.c
drivers/staging/iio/meter/ade7854-i2c.c
drivers/staging/iio/meter/ade7854-spi.c
drivers/staging/iio/meter/ade7854.c
drivers/staging/iio/resolver/ad2s1200.c
drivers/staging/iio/resolver/ad2s1210.c
drivers/staging/iio/resolver/ad2s90.c
drivers/staging/iio/trigger/iio-trig-bfin-timer.c
drivers/staging/iio/trigger/iio-trig-gpio.c
drivers/staging/iio/trigger/iio-trig-periodic-rtc.c
drivers/staging/iio/trigger/iio-trig-sysfs.c
include/linux/iio/iio.h
include/linux/iio/trigger.h

index dd1a6a2e81c079f9ec25e3f88a1eb5ca001cc021..e8e280d642959bec6ecd8e877ee2582bf7c0d662 100644 (file)
@@ -737,7 +737,7 @@ static struct device_type iio_dev_type = {
        .release = iio_dev_release,
 };
 
-struct iio_dev *iio_allocate_device(int sizeof_priv)
+struct iio_dev *iio_device_alloc(int sizeof_priv)
 {
        struct iio_dev *dev;
        size_t alloc_size;
@@ -773,16 +773,16 @@ struct iio_dev *iio_allocate_device(int sizeof_priv)
 
        return dev;
 }
-EXPORT_SYMBOL(iio_allocate_device);
+EXPORT_SYMBOL(iio_device_alloc);
 
-void iio_free_device(struct iio_dev *dev)
+void iio_device_free(struct iio_dev *dev)
 {
        if (dev) {
                ida_simple_remove(&iio_ida, dev->id);
                kfree(dev);
        }
 }
-EXPORT_SYMBOL(iio_free_device);
+EXPORT_SYMBOL(iio_device_free);
 
 /**
  * iio_chrdev_open() - chrdev file open for buffer access and ioctls
index 03fee2e097ca9bcae8933ef2621c3178e3c789ad..1dbd7b86a694bd566d9aa39eb5202bf2c08033ff 100644 (file)
@@ -360,9 +360,9 @@ static ssize_t iio_trigger_write_current(struct device *dev,
        indio_dev->trig = trig;
 
        if (oldtrig && indio_dev->trig != oldtrig)
-               iio_put_trigger(oldtrig);
+               iio_trigger_put(oldtrig);
        if (indio_dev->trig)
-               iio_get_trigger(indio_dev->trig);
+               iio_trigger_get(indio_dev->trig);
 
        return len;
 }
@@ -426,7 +426,7 @@ static void iio_trig_subirqunmask(struct irq_data *d)
        trig->subirqs[d->irq - trig->subirq_base].enabled = true;
 }
 
-struct iio_trigger *iio_allocate_trigger(const char *fmt, ...)
+struct iio_trigger *iio_trigger_alloc(const char *fmt, ...)
 {
        va_list vargs;
        struct iio_trigger *trig;
@@ -472,14 +472,14 @@ struct iio_trigger *iio_allocate_trigger(const char *fmt, ...)
        }
        return trig;
 }
-EXPORT_SYMBOL(iio_allocate_trigger);
+EXPORT_SYMBOL(iio_trigger_alloc);
 
-void iio_free_trigger(struct iio_trigger *trig)
+void iio_trigger_free(struct iio_trigger *trig)
 {
        if (trig)
                put_device(&trig->dev);
 }
-EXPORT_SYMBOL(iio_free_trigger);
+EXPORT_SYMBOL(iio_trigger_free);
 
 void iio_device_register_trigger_consumer(struct iio_dev *indio_dev)
 {
@@ -491,7 +491,7 @@ void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev)
 {
        /* Clean up and associated but not attached triggers references */
        if (indio_dev->trig)
-               iio_put_trigger(indio_dev->trig);
+               iio_trigger_put(indio_dev->trig);
 }
 
 int iio_triggered_buffer_postenable(struct iio_dev *indio_dev)
index 8926f2448cc95487e8e8f6865375e8c2e934f4bd..0338c7cd0a8b4a7d5f1ead8a4c766c981c59cf07 100644 (file)
@@ -8,7 +8,7 @@ The crucial structure for device drivers in iio is iio_dev.
 
 First allocate one using:
 
-struct iio_dev *indio_dev = iio_allocate_device(sizeof(struct chip_state));
+struct iio_dev *indio_dev = iio_device_alloc(sizeof(struct chip_state));
 where chip_state is a structure of local state data for this instance of
 the chip.
 
@@ -78,4 +78,4 @@ be registered afterwards (otherwise the whole parentage of devices
 gets confused)
 
 On remove, iio_device_unregister(indio_dev) will remove the device from
-the core, and iio_free_device will clean up.
+the core, and iio_device_free will clean up.
index fc2012ebc100a533af42f1e05095d601adeb2703..75cc37ff1ed007dc722f37c1405e619208deb88a 100644 (file)
@@ -5,7 +5,7 @@ an IIO device.  Whilst this can create device specific complexities
 such triggers are registered with the core in the same way as
 stand-alone triggers.
 
-struct iio_trig *trig = iio_allocate_trigger("<trigger format string>", ...);
+struct iio_trig *trig = iio_trigger_alloc("<trigger format string>", ...);
 
 allocates a trigger structure.  The key elements to then fill in within
 a driver are:
index 9dce7b8d38a5eab311d959842c545567fa148623..62667803c5a7b42d9f206a4fab55236f5b7cf9f2 100644 (file)
@@ -532,7 +532,7 @@ static int __devinit adis16201_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -587,7 +587,7 @@ error_uninitialize_ring:
 error_unreg_ring_funcs:
        adis16201_unconfigure_ring(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -600,7 +600,7 @@ static int adis16201_remove(struct spi_device *spi)
        adis16201_remove_trigger(indio_dev);
        iio_buffer_unregister(indio_dev);
        adis16201_unconfigure_ring(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index da687e01cc45cd89c7e94f62306b921bbd2af135..96fdabbac2012c68cbbce885d9dc53a91fc221f5 100644 (file)
@@ -29,7 +29,7 @@ int adis16201_probe_trigger(struct iio_dev *indio_dev)
        int ret;
        struct adis16201_state *st = iio_priv(indio_dev);
 
-       st->trig = iio_allocate_trigger("adis16201-dev%d", indio_dev->id);
+       st->trig = iio_trigger_alloc("adis16201-dev%d", indio_dev->id);
        if (st->trig == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -56,7 +56,7 @@ int adis16201_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->us->irq, st->trig);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -67,5 +67,5 @@ void adis16201_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(state->trig);
        free_irq(state->us->irq, state->trig);
-       iio_free_trigger(state->trig);
+       iio_trigger_free(state->trig);
 }
index cf1a0e5656733ea8b4fc9eca812ec723ecd6eb36..42d7eea06d1a0a869afef0a03ec76e43bf174a4c 100644 (file)
@@ -469,7 +469,7 @@ static int __devinit adis16203_probe(struct spi_device *spi)
        struct adis16203_state *st;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -523,7 +523,7 @@ error_uninitialize_ring:
 error_unreg_ring_funcs:
        adis16203_unconfigure_ring(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -536,7 +536,7 @@ static int adis16203_remove(struct spi_device *spi)
        adis16203_remove_trigger(indio_dev);
        iio_buffer_unregister(indio_dev);
        adis16203_unconfigure_ring(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 1e1b981e1581481e8d137691c4222f7a95ddd5b8..b8a04073d6d7663f0bf4b693963d34949e59b381 100644 (file)
@@ -29,7 +29,7 @@ int adis16203_probe_trigger(struct iio_dev *indio_dev)
        int ret;
        struct adis16203_state *st = iio_priv(indio_dev);
 
-       st->trig = iio_allocate_trigger("adis16203-dev%d", indio_dev->id);
+       st->trig = iio_trigger_alloc("adis16203-dev%d", indio_dev->id);
        if (st->trig == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -58,7 +58,7 @@ int adis16203_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->us->irq, st->trig);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -69,5 +69,5 @@ void adis16203_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(st->trig);
        free_irq(st->us->irq, st->trig);
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 }
index 2a15d71c02c7d78397cbb929b7a45baae10c669c..eacda583313af5f342c62e5401b97e6946522710 100644 (file)
@@ -545,7 +545,7 @@ static int __devinit adis16204_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -598,7 +598,7 @@ error_uninitialize_ring:
 error_unreg_ring_funcs:
        adis16204_unconfigure_ring(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -611,7 +611,7 @@ static int adis16204_remove(struct spi_device *spi)
        adis16204_remove_trigger(indio_dev);
        iio_buffer_unregister(indio_dev);
        adis16204_unconfigure_ring(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index e6f2937ade7c6a34f07eb1671627c390dae7bfa3..408a1682368efff580546c24ce864b10bebb865e 100644 (file)
@@ -29,7 +29,7 @@ int adis16204_probe_trigger(struct iio_dev *indio_dev)
        int ret;
        struct adis16204_state *st = iio_priv(indio_dev);
 
-       st->trig = iio_allocate_trigger("adis16204-dev%d", indio_dev->id);
+       st->trig = iio_trigger_alloc("adis16204-dev%d", indio_dev->id);
        if (st->trig == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -58,7 +58,7 @@ int adis16204_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->us->irq, st->trig);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -69,5 +69,5 @@ void adis16204_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(state->trig);
        free_irq(state->us->irq, state->trig);
-       iio_free_trigger(state->trig);
+       iio_trigger_free(state->trig);
 }
index cad411340f1dc05f2a45a0872fc1d61198d66a70..8e8dbe6b707d40664fe9ab123aeab4f33dee3a8c 100644 (file)
@@ -544,7 +544,7 @@ static int __devinit adis16209_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -597,7 +597,7 @@ error_uninitialize_ring:
 error_unreg_ring_funcs:
        adis16209_unconfigure_ring(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -612,7 +612,7 @@ static int adis16209_remove(struct spi_device *spi)
        adis16209_remove_trigger(indio_dev);
        iio_buffer_unregister(indio_dev);
        adis16209_unconfigure_ring(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 5f5dbed447d7e68f106c5fe01a55c94adbfc8529..2ad93dcaf40dd958dc0cb5caca627a32d67e374a 100644 (file)
@@ -38,7 +38,7 @@ int adis16209_probe_trigger(struct iio_dev *indio_dev)
        int ret;
        struct adis16209_state *st = iio_priv(indio_dev);
 
-       st->trig = iio_allocate_trigger("adis16209-dev%d", indio_dev->id);
+       st->trig = iio_trigger_alloc("adis16209-dev%d", indio_dev->id);
        if (st->trig == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -66,7 +66,7 @@ int adis16209_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->us->irq, st->trig);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -77,5 +77,5 @@ void adis16209_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(st->trig);
        free_irq(st->us->irq, st->trig);
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 }
index c86a3db6d747b3f7abdc9776826f4f4d80d7f4b3..e8c513db2d232fab85a2c230b92a80fbf186341c 100644 (file)
@@ -634,7 +634,7 @@ static int __devinit adis16220_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -685,7 +685,7 @@ error_rm_accel_bin:
 error_unregister_dev:
        iio_device_unregister(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -700,7 +700,7 @@ static int adis16220_remove(struct spi_device *spi)
        sysfs_remove_bin_file(&indio_dev->dev.kobj, &adc1_bin);
        sysfs_remove_bin_file(&indio_dev->dev.kobj, &accel_bin);
        iio_device_unregister(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index fcc2c19f69dd1f02dec85d501eabc339c7ae4cbe..f043bbdce36fdac28378147e5f3358a0d438ed2b 100644 (file)
@@ -578,7 +578,7 @@ static int __devinit adis16240_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -631,7 +631,7 @@ error_uninitialize_ring:
 error_unreg_ring_funcs:
        adis16240_unconfigure_ring(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -647,7 +647,7 @@ static int adis16240_remove(struct spi_device *spi)
        adis16240_remove_trigger(indio_dev);
        iio_buffer_unregister(indio_dev);
        adis16240_unconfigure_ring(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 53eda35b37e7325ee2a2b1273fa8a9eb3e8d6db6..fa90a22b143e7c23121e8ec1afea564ae77e8cfa 100644 (file)
@@ -38,7 +38,7 @@ int adis16240_probe_trigger(struct iio_dev *indio_dev)
        int ret;
        struct adis16240_state *st = iio_priv(indio_dev);
 
-       st->trig = iio_allocate_trigger("adis16240-dev%d", indio_dev->id);
+       st->trig = iio_trigger_alloc("adis16240-dev%d", indio_dev->id);
        if (st->trig == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -67,7 +67,7 @@ int adis16240_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->us->irq, st->trig);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -78,5 +78,5 @@ void adis16240_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(st->trig);
        free_irq(st->us->irq, st->trig);
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 }
index 329239011d47d6c7ae999ebbae3bbb44c7312e61..8cf7cd943c90957166637e3a9cde38235f5c7e2a 100644 (file)
@@ -228,7 +228,7 @@ static int __devinit kxsd9_probe(struct spi_device *spi)
        struct kxsd9_state *st;
        int ret = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -256,7 +256,7 @@ static int __devinit kxsd9_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -264,7 +264,7 @@ error_ret:
 static int __devexit kxsd9_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index bbef0be3d81ecebaaf2608d4e9a21189509908a0..a7780439af159ba8203a321d993842fdcd26f376 100644 (file)
@@ -680,7 +680,7 @@ static int __devinit lis3l02dq_probe(struct spi_device *spi)
        struct lis3l02dq_state *st;
        struct iio_dev *indio_dev;
 
-       indio_dev = iio_allocate_device(sizeof *st);
+       indio_dev = iio_device_alloc(sizeof *st);
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -748,7 +748,7 @@ error_uninitialize_buffer:
 error_unreg_buffer_funcs:
        lis3l02dq_unconfigure_buffer(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -803,7 +803,7 @@ static int lis3l02dq_remove(struct spi_device *spi)
        iio_buffer_unregister(indio_dev);
        lis3l02dq_unconfigure_buffer(indio_dev);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 err_ret:
        return ret;
 }
index c8b8164eef77c3ccaed44c7913fe185330ed7bec..9306f934e3331360ed9379e11435624c6da361b0 100644 (file)
@@ -286,7 +286,7 @@ int lis3l02dq_probe_trigger(struct iio_dev *indio_dev)
        int ret;
        struct lis3l02dq_state *st = iio_priv(indio_dev);
 
-       st->trig = iio_allocate_trigger("lis3l02dq-dev%d", indio_dev->id);
+       st->trig = iio_trigger_alloc("lis3l02dq-dev%d", indio_dev->id);
        if (!st->trig) {
                ret = -ENOMEM;
                goto error_ret;
@@ -302,7 +302,7 @@ int lis3l02dq_probe_trigger(struct iio_dev *indio_dev)
        return 0;
 
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -312,7 +312,7 @@ void lis3l02dq_remove_trigger(struct iio_dev *indio_dev)
        struct lis3l02dq_state *st = iio_priv(indio_dev);
 
        iio_trigger_unregister(st->trig);
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 }
 
 void lis3l02dq_unconfigure_buffer(struct iio_dev *indio_dev)
index 2ee5eb060932cfdeecf2c741c2013f7e987f5c3b..3c5aea5efb2b31805a51c9bcd149f9ca0ec56715 100644 (file)
@@ -1145,7 +1145,7 @@ static int __devinit sca3000_probe(struct spi_device *spi)
        struct sca3000_state *st;
        struct iio_dev *indio_dev;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -1209,7 +1209,7 @@ error_unregister_ring:
 error_unregister_dev:
        iio_device_unregister(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 error_ret:
        return ret;
@@ -1247,7 +1247,7 @@ static int sca3000_remove(struct spi_device *spi)
        iio_device_unregister(indio_dev);
        iio_buffer_unregister(indio_dev);
        sca3000_unconfigure_ring(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 14f983450d7f17cff675f583f754de43ec645844..7b44705acb7e4e958e4d7bd63ff5a7d58247b933 100644 (file)
@@ -604,7 +604,7 @@ static int ad7192_probe_trigger(struct iio_dev *indio_dev)
        struct ad7192_state *st = iio_priv(indio_dev);
        int ret;
 
-       st->trig = iio_allocate_trigger("%s-dev%d",
+       st->trig = iio_trigger_alloc("%s-dev%d",
                                        spi_get_device_id(st->spi)->name,
                                        indio_dev->id);
        if (st->trig == NULL) {
@@ -637,7 +637,7 @@ static int ad7192_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->spi->irq, indio_dev);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -648,7 +648,7 @@ static void ad7192_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(st->trig);
        free_irq(st->spi->irq, indio_dev);
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 }
 
 static ssize_t ad7192_read_frequency(struct device *dev,
@@ -1024,7 +1024,7 @@ static int __devinit ad7192_probe(struct spi_device *spi)
                return -ENODEV;
        }
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL)
                return -ENOMEM;
 
@@ -1105,7 +1105,7 @@ error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
index d72780f91031efb8a3ef3e813402d1f74098a1ff..9c3b66f37395cf713ad87e54bbc3c014dc18a7c4 100644 (file)
@@ -839,7 +839,7 @@ static int __devinit ad7280_probe(struct spi_device *spi)
        int ret;
        const unsigned short tACQ_ns[4] = {465, 1010, 1460, 1890};
        const unsigned short nAVG[4] = {1, 2, 4, 8};
-       struct iio_dev *indio_dev = iio_allocate_device(sizeof(*st));
+       struct iio_dev *indio_dev = iio_device_alloc(sizeof(*st));
 
        if (indio_dev == NULL)
                return -ENOMEM;
@@ -945,7 +945,7 @@ error_free_channels:
        kfree(st->channels);
 
 error_free_device:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -964,7 +964,7 @@ static int __devexit ad7280_remove(struct spi_device *spi)
 
        kfree(st->channels);
        kfree(st->iio_attr);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index b8e4fe6c0c501011a7127e4fb31ac9e8d843c82e..a987c2011ec121a1ed44e27f8b3541b957169c19 100644 (file)
@@ -587,7 +587,7 @@ static int __devinit ad7291_probe(struct i2c_client *client,
        struct iio_dev *indio_dev;
        int ret = 0, voltage_uv = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -669,7 +669,7 @@ error_put_reg:
        if (!IS_ERR(chip->reg))
                regulator_put(chip->reg);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -689,7 +689,7 @@ static int __devexit ad7291_remove(struct i2c_client *client)
                regulator_put(chip->reg);
        }
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 974a8e3ef26aa20391c2ca32def53b6f0b044700..c90f2b3e661ff7c33660987227c8f381468e5ef8 100644 (file)
@@ -179,7 +179,7 @@ static int __devinit ad7298_probe(struct spi_device *spi)
        struct ad7298_platform_data *pdata = spi->dev.platform_data;
        struct ad7298_state *st;
        int ret;
-       struct iio_dev *indio_dev = iio_allocate_device(sizeof(*st));
+       struct iio_dev *indio_dev = iio_device_alloc(sizeof(*st));
 
        if (indio_dev == NULL)
                return -ENOMEM;
@@ -252,7 +252,7 @@ error_disable_reg:
 error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -269,7 +269,7 @@ static int __devexit ad7298_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 1241b9fadbf7a80d272360ae8d95ff76a3d58329..be1c260cf165ab4d4d6d2c52bd71f88e71e69799 100644 (file)
@@ -128,7 +128,7 @@ static int __devinit ad7476_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
        int ret, voltage_uv = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -198,7 +198,7 @@ error_disable_reg:
 error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 error_ret:
        return ret;
@@ -216,7 +216,7 @@ static int ad7476_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 9c540643576b4e25910f841687753fa64815d78d..f82d36c603c181966d0b937fd79f7c3fee42d1d6 100644 (file)
@@ -461,7 +461,7 @@ struct iio_dev *ad7606_probe(struct device *dev, int irq,
        struct ad7606_platform_data *pdata = dev->platform_data;
        struct ad7606_state *st;
        int ret;
-       struct iio_dev *indio_dev = iio_allocate_device(sizeof(*st));
+       struct iio_dev *indio_dev = iio_device_alloc(sizeof(*st));
 
        if (indio_dev == NULL) {
                ret = -ENOMEM;
@@ -560,7 +560,7 @@ error_disable_reg:
 error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ERR_PTR(ret);
 }
@@ -580,7 +580,7 @@ int ad7606_remove(struct iio_dev *indio_dev, int irq)
        }
 
        ad7606_free_gpios(st);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index a8e661e5e4e659b32f25c54ea5a73dbd9dc649c6..1ece2ac8de56965ea0af82c378244da50bdfdece 100644 (file)
@@ -187,7 +187,7 @@ static int __devinit ad7780_probe(struct spi_device *spi)
                return -ENODEV;
        }
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL)
                return -ENOMEM;
 
@@ -265,7 +265,7 @@ error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -282,7 +282,7 @@ static int ad7780_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 3a7d1a7b4e05aa230b5cd7d31085527bea318534..8ffdd800bcd9056aa885d10b03213a0bd49ee419 100644 (file)
@@ -469,7 +469,7 @@ static int ad7793_probe_trigger(struct iio_dev *indio_dev)
        struct ad7793_state *st = iio_priv(indio_dev);
        int ret;
 
-       st->trig = iio_allocate_trigger("%s-dev%d",
+       st->trig = iio_trigger_alloc("%s-dev%d",
                                        spi_get_device_id(st->spi)->name,
                                        indio_dev->id);
        if (st->trig == NULL) {
@@ -503,7 +503,7 @@ static int ad7793_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->spi->irq, indio_dev);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -514,7 +514,7 @@ static void ad7793_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(st->trig);
        free_irq(st->spi->irq, indio_dev);
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 }
 
 static const u16 sample_freq_avail[16] = {0, 470, 242, 123, 62, 50, 39, 33, 19,
@@ -904,7 +904,7 @@ static int __devinit ad7793_probe(struct spi_device *spi)
                return -ENODEV;
        }
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL)
                return -ENOMEM;
 
@@ -988,7 +988,7 @@ error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -1008,7 +1008,7 @@ static int ad7793_remove(struct spi_device *spi)
                regulator_put(st->reg);
        }
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 586f6c2425e277d4c370ce8ecbc8138ebdf99f4d..c97da5b66435fc987b7914e6b3b1adda4f0b9a24 100644 (file)
@@ -354,7 +354,7 @@ static int __devinit ad7816_probe(struct spi_device *spi_dev)
                return -EINVAL;
        }
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -426,7 +426,7 @@ error_free_gpio_convert:
 error_free_gpio_rdwr:
        gpio_free(chip->rdwr_pin);
 error_free_device:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -443,7 +443,7 @@ static int __devexit ad7816_remove(struct spi_device *spi_dev)
        gpio_free(chip->busy_pin);
        gpio_free(chip->convert_pin);
        gpio_free(chip->rdwr_pin);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index fef916998f24ec8d7cdaa61a15dc43ae99664ba4..7186074deeb395c01bdfbac09eb7366777756569 100644 (file)
@@ -106,7 +106,7 @@ static int __devinit ad7887_probe(struct spi_device *spi)
        struct ad7887_platform_data *pdata = spi->dev.platform_data;
        struct ad7887_state *st;
        int ret, voltage_uv = 0;
-       struct iio_dev *indio_dev = iio_allocate_device(sizeof(*st));
+       struct iio_dev *indio_dev = iio_device_alloc(sizeof(*st));
 
        if (indio_dev == NULL)
                return -ENOMEM;
@@ -222,7 +222,7 @@ error_disable_reg:
 error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -239,7 +239,7 @@ static int ad7887_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 561ae17ec7cca31d46539a59c79952d63f547c93..cc637b5a36e52a14a4046884e39da1a84a8bf104 100644 (file)
@@ -847,7 +847,7 @@ static int __devinit ad799x_probe(struct i2c_client *client,
        int ret;
        struct ad799x_platform_data *pdata = client->dev.platform_data;
        struct ad799x_state *st;
-       struct iio_dev *indio_dev = iio_allocate_device(sizeof(*st));
+       struct iio_dev *indio_dev = iio_device_alloc(sizeof(*st));
 
        if (indio_dev == NULL)
                return -ENOMEM;
@@ -920,7 +920,7 @@ error_disable_reg:
 error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -940,7 +940,7 @@ static __devexit int ad799x_remove(struct i2c_client *client)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 223aea5952dfd477c9c275aa1350ea601aab9b50..ba4e571a112a92e4dbe0a209f940bec57dc17eaa 100644 (file)
@@ -753,7 +753,7 @@ static int __devinit adt7310_probe(struct spi_device *spi_dev)
        unsigned long *adt7310_platform_data = spi_dev->dev.platform_data;
        unsigned long irq_flags;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -833,7 +833,7 @@ error_unreg_int_irq:
 error_unreg_ct_irq:
        free_irq(spi_dev->irq, indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -849,7 +849,7 @@ static int __devexit adt7310_remove(struct spi_device *spi_dev)
                free_irq(adt7310_platform_data[0], indio_dev);
        if (spi_dev->irq)
                free_irq(spi_dev->irq, indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index dab4a5abff8a591f42b7ddc1f2975a756b08fed7..2d4b5c6cd8fc3364958e3661448962481d152758 100644 (file)
@@ -721,7 +721,7 @@ static int __devinit adt7410_probe(struct i2c_client *client,
        int ret = 0;
        unsigned long *adt7410_platform_data = client->dev.platform_data;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -797,7 +797,7 @@ error_unreg_int_irq:
 error_unreg_ct_irq:
        free_irq(client->irq, indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -812,7 +812,7 @@ static int __devexit adt7410_remove(struct i2c_client *client)
                free_irq(adt7410_platform_data[0], indio_dev);
        if (client->irq)
                free_irq(client->irq, indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 0ddd91712f44d94fe5f50d259f53edfb42fa484b..9690306d1f8f21b2eb85ea3518e6cbe81f43990d 100644 (file)
@@ -141,7 +141,7 @@ static int __devinit lpc32xx_adc_probe(struct platform_device *pdev)
                goto errout1;
        }
 
-       iodev = iio_allocate_device(sizeof(struct lpc32xx_adc_info));
+       iodev = iio_device_alloc(sizeof(struct lpc32xx_adc_info));
        if (!iodev) {
                dev_err(&pdev->dev, "failed allocating iio device\n");
                retval = -ENOMEM;
@@ -202,7 +202,7 @@ errout4:
 errout3:
        iounmap(info->adc_base);
 errout2:
-       iio_free_device(iodev);
+       iio_device_free(iodev);
 errout1:
        return retval;
 }
@@ -218,7 +218,7 @@ static int __devexit lpc32xx_adc_remove(struct platform_device *pdev)
        platform_set_drvdata(pdev, NULL);
        clk_put(info->clk);
        iounmap(info->adc_base);
-       iio_free_device(iodev);
+       iio_device_free(iodev);
 
        return 0;
 }
index 7ab871c8aab51f0ae4784c021b97dfeeb24037e0..572a500d6e51b27b67b91d49d84d307036d8ef49 100644 (file)
@@ -1287,7 +1287,7 @@ static int __devinit max1363_probe(struct i2c_client *client,
        if (ret)
                goto error_put_reg;
 
-       indio_dev = iio_allocate_device(sizeof(struct max1363_state));
+       indio_dev = iio_device_alloc(sizeof(struct max1363_state));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_disable_reg;
@@ -1358,7 +1358,7 @@ error_free_available_scan_masks:
 error_unregister_map:
        iio_map_array_unregister(indio_dev, client->dev.platform_data);
 error_free_device:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_disable_reg:
        regulator_disable(reg);
 error_put_reg:
@@ -1384,7 +1384,7 @@ static int max1363_remove(struct i2c_client *client)
                regulator_put(reg);
        }
        iio_map_array_unregister(indio_dev, client->dev.platform_data);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 2b4e1eb8eab1cc003d674304b9869e0ee55a60e4..8c6013f0a4b398272457d5fd0a874f5792e779ea 100644 (file)
@@ -300,7 +300,7 @@ static int __devinit spear_adc_probe(struct platform_device *pdev)
        int ret = -ENODEV;
        int irq;
 
-       iodev = iio_allocate_device(sizeof(struct spear_adc_info));
+       iodev = iio_device_alloc(sizeof(struct spear_adc_info));
        if (!iodev) {
                dev_err(dev, "failed allocating iio device\n");
                ret = -ENOMEM;
@@ -404,7 +404,7 @@ errout4:
 errout3:
        iounmap(info->adc_base_spear6xx);
 errout2:
-       iio_free_device(iodev);
+       iio_device_free(iodev);
 errout1:
        return ret;
 }
@@ -420,7 +420,7 @@ static int __devexit spear_adc_remove(struct platform_device *pdev)
        clk_unprepare(info->clk);
        clk_put(info->clk);
        iounmap(info->adc_base_spear6xx);
-       iio_free_device(iodev);
+       iio_device_free(iodev);
 
        return 0;
 }
index f469ab3cc7b96b01cce193a1855f4fd3edf72a53..5aba804237ce4e031c9d33de20a8c5f6f2f4722c 100644 (file)
@@ -2133,7 +2133,7 @@ int __devinit adt7316_probe(struct device *dev, struct adt7316_bus *bus,
        unsigned short *adt7316_platform_data = dev->platform_data;
        int ret = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -2210,7 +2210,7 @@ int __devinit adt7316_probe(struct device *dev, struct adt7316_bus *bus,
 error_unreg_irq:
        free_irq(chip->bus.irq, indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -2224,7 +2224,7 @@ int __devexit adt7316_remove(struct device *dev)
        iio_device_unregister(indio_dev);
        if (chip->bus.irq)
                free_irq(chip->bus.irq, indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index c0ccbc524c6efe306cae8fc70ed0aa609e3adfa1..14470764fa0bfb0f558b988fd900062413e60938 100644 (file)
@@ -558,7 +558,7 @@ static int __devinit ad7150_probe(struct i2c_client *client,
        struct ad7150_chip_info *chip;
        struct iio_dev *indio_dev;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -621,7 +621,7 @@ error_free_irq:
        if (client->irq)
                free_irq(client->irq, indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -637,7 +637,7 @@ static int __devexit ad7150_remove(struct i2c_client *client)
        if (client->dev.platform_data)
                free_irq(*(unsigned int *)client->dev.platform_data, indio_dev);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index ea403596c958b964076706c7ea42e071c91344a7..195d90748633305e357b37aa46e68f472704f943 100644 (file)
@@ -481,7 +481,7 @@ static int __devinit ad7152_probe(struct i2c_client *client,
        struct ad7152_chip_info *chip;
        struct iio_dev *indio_dev;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -513,7 +513,7 @@ static int __devinit ad7152_probe(struct i2c_client *client,
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -523,7 +523,7 @@ static int __devexit ad7152_remove(struct i2c_client *client)
        struct iio_dev *indio_dev = i2c_get_clientdata(client);
 
        iio_device_unregister(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 74a889a6d899271c154e5f6f713615c960cef20c..e936831d5c96dfe4effb6b77e02a76931c2ff53d 100644 (file)
@@ -703,7 +703,7 @@ static int __devinit ad7746_probe(struct i2c_client *client,
        int ret = 0;
        unsigned char regval = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -763,7 +763,7 @@ static int __devinit ad7746_probe(struct i2c_client *client,
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -773,7 +773,7 @@ static int __devexit ad7746_remove(struct i2c_client *client)
        struct iio_dev *indio_dev = i2c_get_clientdata(client);
 
        iio_device_unregister(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index c0fad4fd13fa69bccb9ce6199dc6a1b3ced502b6..bce641a1cf82adb065d9721b28bad645299a4d9a 100644 (file)
@@ -443,7 +443,7 @@ static int __devinit ad5064_probe(struct spi_device *spi)
        unsigned int i;
        int ret;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL)
                return  -ENOMEM;
 
@@ -500,7 +500,7 @@ error_free_reg:
        if (!st->use_internal_vref)
                regulator_bulk_free(ad5064_num_vref(st), st->vref_reg);
 error_free:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -518,7 +518,7 @@ static int __devexit ad5064_remove(struct spi_device *spi)
                regulator_bulk_free(ad5064_num_vref(st), st->vref_reg);
        }
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 0978dd2891b9ea72c748f0300885eeae51096741..26cac42dcca988c30799eefc34583d7be3381d73 100644 (file)
@@ -465,7 +465,7 @@ static int __devinit ad5360_probe(struct spi_device *spi)
        unsigned int i;
        int ret;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                dev_err(&spi->dev, "Failed to allocate iio device\n");
                return  -ENOMEM;
@@ -520,7 +520,7 @@ error_free_reg:
 error_free_channels:
        kfree(indio_dev->channels);
 error_free:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -537,7 +537,7 @@ static int __devexit ad5360_remove(struct spi_device *spi)
        regulator_bulk_disable(st->chip_info->num_vrefs, st->vref_reg);
        regulator_bulk_free(st->chip_info->num_vrefs, st->vref_reg);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index aa077e676dfe554cac74a007c9e73d52b3036a79..4afb099fa5dd6a96a7a7bbc66b2f893b787f2981 100644 (file)
@@ -389,7 +389,7 @@ static int __devinit ad5380_probe(struct device *dev, struct regmap *regmap,
        unsigned int ctrl = 0;
        int ret;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                dev_err(dev, "Failed to allocate iio device\n");
                ret = -ENOMEM;
@@ -455,7 +455,7 @@ error_free_reg:
 
        kfree(indio_dev->channels);
 error_free:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_regmap_exit:
        regmap_exit(regmap);
 
@@ -477,7 +477,7 @@ static int __devexit ad5380_remove(struct device *dev)
        }
 
        regmap_exit(st->regmap);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index b1a893ce2c88ce395bfb9d3fcafe5341621d23c0..ffbd4c234f57dd9a809cef729cc1b6a3181df688 100644 (file)
@@ -457,7 +457,7 @@ static int __devinit ad5421_probe(struct spi_device *spi)
        struct ad5421_state *st;
        int ret;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                dev_err(&spi->dev, "Failed to allocate iio device\n");
                return  -ENOMEM;
@@ -512,7 +512,7 @@ error_free_irq:
        if (spi->irq)
                free_irq(spi->irq, indio_dev);
 error_free:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -524,7 +524,7 @@ static int __devexit ad5421_remove(struct spi_device *spi)
        iio_device_unregister(indio_dev);
        if (spi->irq)
                free_irq(spi->irq, indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 62ad1d5df4751d06a90aeb075148cd072ad770c1..3b2551f67a0d5b7a1e0e1f4d7544a740a268ee44 100644 (file)
@@ -296,7 +296,7 @@ static int __devinit ad5446_probe(struct spi_device *spi)
                voltage_uv = regulator_get_voltage(reg);
        }
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_disable_reg;
@@ -331,7 +331,7 @@ static int __devinit ad5446_probe(struct spi_device *spi)
        return 0;
 
 error_free_device:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_disable_reg:
        if (!IS_ERR(reg))
                regulator_disable(reg);
@@ -352,7 +352,7 @@ static int ad5446_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 18fc391e62d4743d6cdabf0f6f4a3a370ee98e36..e47f4d0967b4509d699dde8565ee382245d37449 100644 (file)
@@ -288,7 +288,7 @@ static int __devinit ad5504_probe(struct spi_device *spi)
        struct regulator *reg;
        int ret, voltage_uv = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -351,7 +351,7 @@ error_put_reg:
        if (!IS_ERR(reg))
                regulator_put(reg);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -369,7 +369,7 @@ static int __devexit ad5504_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index c7786c18b847035f9a99be9718c45855a3d00f7c..cde4a9f8d897c9365553a0c6b5a1e273dd598ce1 100644 (file)
@@ -256,7 +256,7 @@ static int __devinit ad5624r_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
        int ret, voltage_uv = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -306,7 +306,7 @@ error_disable_reg:
 error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
 
        return ret;
@@ -322,7 +322,7 @@ static int __devexit ad5624r_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 86c869134bd44b9a50e65ed836eaa3313d1d801f..6a74436af594854d4b27d9cebde4b54071231e08 100644 (file)
@@ -359,7 +359,7 @@ static int __devinit ad5686_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
        int ret, regdone = 0, voltage_uv = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL)
                return  -ENOMEM;
 
@@ -411,7 +411,7 @@ error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -426,7 +426,7 @@ static int __devexit ad5686_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index b01d7eedb95e49fb4c1f1c093d7b990d025714d7..03dbd937b081324e15afb4f4bda1b42eeb87f4fe 100644 (file)
@@ -281,7 +281,7 @@ static int __devinit ad5764_probe(struct spi_device *spi)
        struct ad5764_state *st;
        int ret;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                dev_err(&spi->dev, "Failed to allocate iio device\n");
                return -ENOMEM;
@@ -336,7 +336,7 @@ error_free_reg:
        if (st->chip_info->int_vref == 0)
                regulator_bulk_free(ARRAY_SIZE(st->vref_reg), st->vref_reg);
 error_free:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -353,7 +353,7 @@ static int __devexit ad5764_remove(struct spi_device *spi)
                regulator_bulk_free(ARRAY_SIZE(st->vref_reg), st->vref_reg);
        }
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index c013868dfcd51f80cf184625c8d2d561307265af..1cc75e6cd901f764a67c6791e361216e2d07710b 100644 (file)
@@ -289,7 +289,7 @@ static int __devinit ad5791_probe(struct spi_device *spi)
        struct ad5791_state *st;
        int ret, pos_voltage_uv = 0, neg_voltage_uv = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -369,7 +369,7 @@ error_put_reg_neg:
 error_put_reg_pos:
        if (!IS_ERR(st->reg_vdd))
                regulator_put(st->reg_vdd);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
 
        return ret;
@@ -390,7 +390,7 @@ static int __devexit ad5791_remove(struct spi_device *spi)
                regulator_disable(st->reg_vss);
                regulator_put(st->reg_vss);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 373127cc83a8b99231d6d2737c46615502322534..a3f588dfdbfb8f26fe44978826f8fae197908d5b 100644 (file)
@@ -218,7 +218,7 @@ static int max517_probe(struct i2c_client *client,
        struct max517_platform_data *platform_data = client->dev.platform_data;
        int err;
 
-       indio_dev = iio_allocate_device(sizeof(*data));
+       indio_dev = iio_device_alloc(sizeof(*data));
        if (indio_dev == NULL) {
                err = -ENOMEM;
                goto exit;
@@ -257,14 +257,14 @@ static int max517_probe(struct i2c_client *client,
        return 0;
 
 exit_free_device:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 exit:
        return err;
 }
 
 static int max517_remove(struct i2c_client *client)
 {
-       iio_free_device(i2c_get_clientdata(client));
+       iio_device_free(i2c_get_clientdata(client));
 
        return 0;
 }
index 6df4d86be8494621afbd6b0883214a047b1f119c..97542fc9bf222241a4229c3a3b3b1bc3139b217f 100644 (file)
@@ -97,7 +97,7 @@ static int __devinit ad5930_probe(struct spi_device *spi)
        struct iio_dev *idev;
        int ret = 0;
 
-       idev = iio_allocate_device(sizeof(*st));
+       idev = iio_device_alloc(sizeof(*st));
        if (idev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -122,7 +122,7 @@ static int __devinit ad5930_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(idev);
+       iio_device_free(idev);
 error_ret:
        return ret;
 }
@@ -130,7 +130,7 @@ error_ret:
 static int __devexit ad5930_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index 57627ff45c3a2b96f67c36812c133a95c0bc4e2c..7a9b723d51e0cd8990e7595e676a3a06f2cb315b 100644 (file)
@@ -221,7 +221,7 @@ static int __devinit ad9832_probe(struct spi_device *spi)
                        goto error_put_reg;
        }
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_disable_reg;
@@ -313,7 +313,7 @@ static int __devinit ad9832_probe(struct spi_device *spi)
        return 0;
 
 error_free_device:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_disable_reg:
        if (!IS_ERR(reg))
                regulator_disable(reg);
@@ -334,7 +334,7 @@ static int __devexit ad9832_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 9b2c8795f8943a798e433a490f97913636979c42..b8ef8d9be5501567f7d36f4e68105dd648a823bd 100644 (file)
@@ -334,7 +334,7 @@ static int __devinit ad9834_probe(struct spi_device *spi)
                        goto error_put_reg;
        }
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_disable_reg;
@@ -414,7 +414,7 @@ static int __devinit ad9834_probe(struct spi_device *spi)
        return 0;
 
 error_free_device:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_disable_reg:
        if (!IS_ERR(reg))
                regulator_disable(reg);
@@ -434,7 +434,7 @@ static int __devexit ad9834_remove(struct spi_device *spi)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index cc7a87d25a599b7287a2e42f5d943013ee21f5d5..39f12a6a08b474b469a1aa1b40c45c3981791319 100644 (file)
@@ -83,7 +83,7 @@ static int __devinit ad9850_probe(struct spi_device *spi)
        struct iio_dev *idev;
        int ret = 0;
 
-       idev = iio_allocate_device(sizeof(*st));
+       idev = iio_device_alloc(sizeof(*st));
        if (idev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -108,7 +108,7 @@ static int __devinit ad9850_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(idev);
+       iio_device_free(idev);
 error_ret:
        return ret;
 }
@@ -116,7 +116,7 @@ error_ret:
 static int __devexit ad9850_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index 2f8df7bcb78354a772ebc4c65870c81151a4c562..58d4bf89e64e05b1cbabe97e0a22fb5e641c97eb 100644 (file)
@@ -232,7 +232,7 @@ static int __devinit ad9852_probe(struct spi_device *spi)
        struct iio_dev *idev;
        int ret = 0;
 
-       idev = iio_allocate_device(sizeof(*st));
+       idev = iio_device_alloc(sizeof(*st));
        if (idev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -258,7 +258,7 @@ static int __devinit ad9852_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(idev);
+       iio_device_free(idev);
 
 error_ret:
        return ret;
@@ -267,7 +267,7 @@ error_ret:
 static int __devexit ad9852_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index e91efc5c0fca5e6bfee7f5f006ad1c8773ea339d..6e7a97e92a20eb3a84c0ca3ff81a276c9a98081c 100644 (file)
@@ -367,7 +367,7 @@ static int __devinit ad9910_probe(struct spi_device *spi)
        struct iio_dev *idev;
        int ret = 0;
 
-       idev = iio_allocate_device(sizeof(*st));
+       idev = iio_device_alloc(sizeof(*st));
        if (idev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -392,7 +392,7 @@ static int __devinit ad9910_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(idev);
+       iio_device_free(idev);
 error_ret:
        return ret;
 }
@@ -400,7 +400,7 @@ error_ret:
 static int __devexit ad9910_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index ca1d3111b0bfcf5a031dcf0ed78e2607fe5bfb4a..19ba721788fe2344c0a2eea5edba84f988284319 100644 (file)
@@ -176,7 +176,7 @@ static int __devinit ad9951_probe(struct spi_device *spi)
        struct iio_dev *idev;
        int ret = 0;
 
-       idev = iio_allocate_device(sizeof(*st));
+       idev = iio_device_alloc(sizeof(*st));
        if (idev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -202,7 +202,7 @@ static int __devinit ad9951_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(idev);
+       iio_device_free(idev);
 
 error_ret:
        return ret;
@@ -211,7 +211,7 @@ error_ret:
 static int __devexit ad9951_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index 08aaf2783895d91237e3852323beb42ea1c4771c..9931e2060e1f3e827e22c0c3ca162e4555a567a7 100644 (file)
@@ -152,7 +152,7 @@ static int __devinit adis16060_r_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -178,7 +178,7 @@ static int __devinit adis16060_r_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -187,7 +187,7 @@ error_ret:
 static int adis16060_r_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index 7e3695ba628b6fcdc99a14de2d26bf3b3c8d4c51..11f1dccd7a0da14bd6bd7400067f0872e21f5dd2 100644 (file)
@@ -145,7 +145,7 @@ static int __devinit adis16080_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -171,7 +171,7 @@ static int __devinit adis16080_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -180,7 +180,7 @@ error_ret:
 static int adis16080_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index 98aa1b92b9d4e78e2510815a1a14685eb36a2296..bf61cd0b5bbcb23686c6a23dba4d4a5462645e71 100644 (file)
@@ -123,7 +123,7 @@ static int __devinit adis16130_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -147,7 +147,7 @@ static int __devinit adis16130_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 error_ret:
        return ret;
@@ -157,7 +157,7 @@ error_ret:
 static int adis16130_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index 15253beab9a0c833ced101c7ce5c0d9543401fa9..d7979cf15cd0b1ba6239606195a7af0e0eb06b4e 100644 (file)
@@ -627,7 +627,7 @@ static int __devinit adis16260_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -712,7 +712,7 @@ error_uninitialize_ring:
 error_unreg_ring_funcs:
        adis16260_unconfigure_ring(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -733,7 +733,7 @@ static int adis16260_remove(struct spi_device *spi)
        adis16260_remove_trigger(indio_dev);
        iio_buffer_unregister(indio_dev);
        adis16260_unconfigure_ring(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 err_ret:
        return ret;
index dc56f32637628a5aea4ce29e4bd4e2478be5793b..034559e4d5b981ea35006628105085d91013714f 100644 (file)
@@ -29,7 +29,7 @@ int adis16260_probe_trigger(struct iio_dev *indio_dev)
        int ret;
        struct adis16260_state *st = iio_priv(indio_dev);
 
-       st->trig = iio_allocate_trigger("%s-dev%d",
+       st->trig = iio_trigger_alloc("%s-dev%d",
                                        spi_get_device_id(st->us)->name,
                                        indio_dev->id);
        if (st->trig == NULL) {
@@ -60,7 +60,7 @@ int adis16260_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->us->irq, st->trig);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -71,5 +71,5 @@ void adis16260_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(st->trig);
        free_irq(st->us->irq, st->trig);
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 }
index 06a9e974f0106da3fce77f7b904ac9ebc25b0fdf..6513119b1e90152bc95c5c4a7549b47baeada166 100644 (file)
@@ -372,7 +372,7 @@ static int __devinit adxrs450_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -403,7 +403,7 @@ static int __devinit adxrs450_probe(struct spi_device *spi)
 error_initial:
        iio_device_unregister(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 error_ret:
        return ret;
@@ -412,7 +412,7 @@ error_ret:
 static int adxrs450_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index fa4a653290091360813b957f6a99e1f61b023475..3b4513cf5ab9ff436dcd3b607a90847c0686b4c6 100644 (file)
@@ -392,7 +392,7 @@ static int __devinit iio_dummy_probe(int index)
         * It also has a region (accessed by iio_priv()
         * for chip specific state information.
         */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -472,7 +472,7 @@ error_unregister_events:
 error_free_device:
        /* Note free device should only be called, before registration
         * has succeeded. */
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -509,7 +509,7 @@ static int iio_dummy_remove(int index)
                goto error_ret;
 
        /* Free all structures */
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 error_ret:
        return ret;
index 9d99a7f67fa49cbf9be752a988b54427eda32524..359a794f684ac322ba9cb9da07a49f5a2c6afd99 100644 (file)
@@ -705,7 +705,7 @@ static int __devinit ad5933_probe(struct i2c_client *client,
        int ret, voltage_uv = 0;
        struct ad5933_platform_data *pdata = client->dev.platform_data;
        struct ad5933_state *st;
-       struct iio_dev *indio_dev = iio_allocate_device(sizeof(*st));
+       struct iio_dev *indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL)
                return -ENOMEM;
 
@@ -784,7 +784,7 @@ error_put_reg:
        if (!IS_ERR(st->reg))
                regulator_put(st->reg);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -801,7 +801,7 @@ static __devexit int ad5933_remove(struct i2c_client *client)
                regulator_disable(st->reg);
                regulator_put(st->reg);
        }
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 68ecc1525017cc441aca2b8a102c66e0acb0f4c4..5015f823b65ff7832061b98e7090bd3fa2ac0664 100644 (file)
@@ -1161,7 +1161,7 @@ static int __devinit adis16400_probe(struct spi_device *spi)
 {
        int ret;
        struct adis16400_state *st;
-       struct iio_dev *indio_dev = iio_allocate_device(sizeof(*st));
+       struct iio_dev *indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret =  -ENOMEM;
                goto error_ret;
@@ -1218,7 +1218,7 @@ error_uninitialize_ring:
 error_unreg_ring_funcs:
        adis16400_unconfigure_ring(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -1237,7 +1237,7 @@ static int adis16400_remove(struct spi_device *spi)
        adis16400_remove_trigger(indio_dev);
        iio_buffer_unregister(indio_dev);
        adis16400_unconfigure_ring(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 
index bd22e6cc11c3faaf74376205f4795e081e2d8511..42a678e92fc6114625f8e81af5cd908e43b39194 100644 (file)
@@ -29,7 +29,7 @@ int adis16400_probe_trigger(struct iio_dev *indio_dev)
        int ret;
        struct adis16400_state *st = iio_priv(indio_dev);
 
-       st->trig = iio_allocate_trigger("%s-dev%d",
+       st->trig = iio_trigger_alloc("%s-dev%d",
                                        indio_dev->name,
                                        indio_dev->id);
        if (st->trig == NULL) {
@@ -59,7 +59,7 @@ int adis16400_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->us->irq, st->trig);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -70,5 +70,5 @@ void adis16400_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(st->trig);
        free_irq(st->us->irq, st->trig);
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 }
index 92283ebafa55878549d97c4e9beaee78e2608440..2d23c6afa2864c4f2297d6271fc7591e07d2512c 100644 (file)
@@ -532,7 +532,7 @@ static int __devinit isl29018_probe(struct i2c_client *client,
        struct iio_dev *indio_dev;
        int err;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                dev_err(&client->dev, "iio allocation fails\n");
                err = -ENOMEM;
@@ -574,7 +574,7 @@ static int __devinit isl29018_probe(struct i2c_client *client,
 
        return 0;
 exit_iio_free:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 exit:
        return err;
 }
@@ -585,7 +585,7 @@ static int __devexit isl29018_remove(struct i2c_client *client)
 
        dev_dbg(&client->dev, "%s()\n", __func__);
        iio_device_unregister(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 2ada20e65f22a9d7b797246ce649f5ac8f3b884f..33a4c3f94a144b66c41e0ca127222d8510c339f8 100644 (file)
@@ -482,7 +482,7 @@ static int __devinit isl29028_probe(struct i2c_client *client,
        struct iio_dev *indio_dev;
        int ret;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (!indio_dev) {
                dev_err(&client->dev, "iio allocation fails\n");
                return -ENOMEM;
@@ -522,7 +522,7 @@ static int __devinit isl29028_probe(struct i2c_client *client,
        return 0;
 
 exit_iio_free:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
        return ret;
 }
 
@@ -531,7 +531,7 @@ static int __devexit isl29028_remove(struct i2c_client *client)
        struct iio_dev *indio_dev = i2c_get_clientdata(client);
 
        iio_device_unregister(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
        return 0;
 }
 
index 6351360041037acce4b3ee5f2f70f6adc58f717c..9d740be43a82533165de3abe0db5213f5514730c 100644 (file)
@@ -714,7 +714,7 @@ static int __devinit tsl2563_probe(struct i2c_client *client,
        int err = 0;
        u8 id = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (!indio_dev)
                return -ENOMEM;
 
@@ -801,7 +801,7 @@ fail2:
        if (client->irq)
                free_irq(client->irq, indio_dev);
 fail1:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
        return err;
 }
 
@@ -822,7 +822,7 @@ static int tsl2563_remove(struct i2c_client *client)
        if (client->irq)
                free_irq(client->irq, indio_dev);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 51b636241d975d2b680de315b763a4c68489a8a7..5ff391e8c18be61db1610cc53ca3fa071531412e 100644 (file)
@@ -815,7 +815,7 @@ static int __devinit taos_probe(struct i2c_client *clientp,
                return -EOPNOTSUPP;
        }
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                dev_err(&clientp->dev, "iio allocation failed\n");
@@ -879,7 +879,7 @@ static int __devinit taos_probe(struct i2c_client *clientp,
        dev_info(&clientp->dev, "Light sensor found.\n");
        return 0;
 fail1:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 fail2:
        return ret;
 }
@@ -926,7 +926,7 @@ static SIMPLE_DEV_PM_OPS(taos_pm_ops, taos_suspend, taos_resume);
 static int __devexit taos_remove(struct i2c_client *client)
 {
        iio_device_unregister(i2c_get_clientdata(client));
-       iio_free_device(i2c_get_clientdata(client));
+       iio_device_free(i2c_get_clientdata(client));
 
        return 0;
 }
index dfc3da6e92e9476bbe46e9971c9f19839e7be06d..efbc4d27e79455d3fd3dc4cf8b4eaeff493f44de 100755 (executable)
@@ -1906,7 +1906,7 @@ static int __devinit tsl2x7x_probe(struct i2c_client *clientp,
        struct iio_dev *indio_dev;
        struct tsl2X7X_chip *chip;
 
-       indio_dev = iio_allocate_device(sizeof(*chip));
+       indio_dev = iio_device_alloc(sizeof(*chip));
        if (!indio_dev)
                return -ENOMEM;
 
@@ -1986,7 +1986,7 @@ fail1:
        if (clientp->irq)
                free_irq(clientp->irq, indio_dev);
 fail2:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -2038,7 +2038,7 @@ static int __devexit tsl2x7x_remove(struct i2c_client *client)
        if (client->irq)
                free_irq(client->irq, chip->client->name);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index d088548c2fa878523f2b9789317bfb8006318465..ea2f91859ce4037b33cd69275906655c533667e3 100644 (file)
@@ -504,7 +504,7 @@ static int ak8975_probe(struct i2c_client *client,
        }
 
        /* Register with IIO */
-       indio_dev = iio_allocate_device(sizeof(*data));
+       indio_dev = iio_device_alloc(sizeof(*data));
        if (indio_dev == NULL) {
                err = -ENOMEM;
                goto exit_gpio;
@@ -535,7 +535,7 @@ static int ak8975_probe(struct i2c_client *client,
        return 0;
 
 exit_free_iio:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 exit_gpio:
        if (gpio_is_valid(eoc_gpio))
                gpio_free(eoc_gpio);
@@ -553,7 +553,7 @@ static int ak8975_remove(struct i2c_client *client)
        if (gpio_is_valid(data->eoc_gpio))
                gpio_free(data->eoc_gpio);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 3433c41fe5486c81c5c00fc05d7677e01a393334..e7cc9e04998e9371159388ddab30450705d72a39 100644 (file)
@@ -544,7 +544,7 @@ static int hmc5843_probe(struct i2c_client *client,
        struct iio_dev *indio_dev;
        int err = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*data));
+       indio_dev = iio_device_alloc(sizeof(*data));
        if (indio_dev == NULL) {
                err = -ENOMEM;
                goto exit;
@@ -572,7 +572,7 @@ static int hmc5843_probe(struct i2c_client *client,
                goto exit_free2;
        return 0;
 exit_free2:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 exit:
        return err;
 }
@@ -584,7 +584,7 @@ static int hmc5843_remove(struct i2c_client *client)
        iio_device_unregister(indio_dev);
         /*  sleep mode to save power */
        hmc5843_configure(client, MODE_SLEEP);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 9b26ae1f23b78b3e9d3746459ecddfa570787a4c..280331b664f48a19dcfe3e13c7bc3be8d71edf69 100644 (file)
@@ -517,7 +517,7 @@ static int __devinit ade7753_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -546,7 +546,7 @@ static int __devinit ade7753_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 error_ret:
        return ret;
@@ -564,7 +564,7 @@ static int ade7753_remove(struct spi_device *spi)
        if (ret)
                goto err_ret;
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 err_ret:
        return ret;
 }
index 02d10dfe8ac5d4c258c865e5a064c426919c4214..59a2e3ef72b5ef7058ada6ca3982bc82c6044f8c 100644 (file)
@@ -540,7 +540,7 @@ static int __devinit ade7754_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -568,7 +568,7 @@ static int __devinit ade7754_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 error_ret:
        return ret;
@@ -585,7 +585,7 @@ static int ade7754_remove(struct spi_device *spi)
        if (ret)
                goto err_ret;
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 err_ret:
        return ret;
index 4a3b429003f19ee8dff56fc855e06efd87a937d4..1a5c9c4081414d0b51ecaaeb10a4162f167b9082 100644 (file)
@@ -885,7 +885,7 @@ static int __devinit ade7758_probe(struct spi_device *spi)
 {
        int i, ret;
        struct ade7758_state *st;
-       struct iio_dev *indio_dev = iio_allocate_device(sizeof(*st));
+       struct iio_dev *indio_dev = iio_device_alloc(sizeof(*st));
 
        if (indio_dev == NULL) {
                ret = -ENOMEM;
@@ -962,7 +962,7 @@ error_free_tx:
 error_free_rx:
        kfree(st->rx);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -984,7 +984,7 @@ static int ade7758_remove(struct spi_device *spi)
        kfree(st->tx);
        kfree(st->rx);
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 err_ret:
        return ret;
index 5c48d382dfdbcaebb76aca1e98d4212ff7a3746b..f9c6a340092b42c97c00b35c3f1958a7ef103772 100644 (file)
@@ -63,7 +63,7 @@ int ade7758_probe_trigger(struct iio_dev *indio_dev)
        struct ade7758_state *st = iio_priv(indio_dev);
        int ret;
 
-       st->trig = iio_allocate_trigger("%s-dev%d",
+       st->trig = iio_trigger_alloc("%s-dev%d",
                                        spi_get_device_id(st->us)->name,
                                        indio_dev->id);
        if (st->trig == NULL) {
@@ -94,7 +94,7 @@ int ade7758_probe_trigger(struct iio_dev *indio_dev)
 error_free_irq:
        free_irq(st->us->irq, st->trig);
 error_free_trig:
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 error_ret:
        return ret;
 }
@@ -105,5 +105,5 @@ void ade7758_remove_trigger(struct iio_dev *indio_dev)
 
        iio_trigger_unregister(st->trig);
        free_irq(st->us->irq, st->trig);
-       iio_free_trigger(st->trig);
+       iio_trigger_free(st->trig);
 }
index 1f2b74add572163b8f9f26ec7e2858b67960613c..91add54af111b642334c0decc052b248754520ba 100644 (file)
@@ -463,7 +463,7 @@ static int __devinit ade7759_probe(struct spi_device *spi)
        struct iio_dev *indio_dev;
 
        /* setup the industrialio driver allocated elements */
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -491,7 +491,7 @@ static int __devinit ade7759_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -507,7 +507,7 @@ static int ade7759_remove(struct spi_device *spi)
        if (ret)
                goto err_ret;
 
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
 err_ret:
        return ret;
index c87c86b095e0713d32351000663004f1493bcd4a..527aa97c74aedd230153a19754e59846a39e1aaf 100644 (file)
@@ -208,7 +208,7 @@ static int __devinit ade7854_i2c_probe(struct i2c_client *client,
        struct ade7854_state *st;
        struct iio_dev *indio_dev;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL)
                return -ENOMEM;
        st = iio_priv(indio_dev);
@@ -226,7 +226,7 @@ static int __devinit ade7854_i2c_probe(struct i2c_client *client,
 
        ret = ade7854_probe(indio_dev, &client->dev);
        if (ret)
-               iio_free_device(indio_dev);
+               iio_device_free(indio_dev);
 
        return ret;
 }
index 11c2cef0e73b618cb53ba2834938e7af46f159ca..eaafaef9caec7070fc43cd1142c5017878894101 100644 (file)
@@ -306,7 +306,7 @@ static int __devinit ade7854_spi_probe(struct spi_device *spi)
        struct ade7854_state *st;
        struct iio_dev *indio_dev;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL)
                return -ENOMEM;
        st = iio_priv(indio_dev);
@@ -325,7 +325,7 @@ static int __devinit ade7854_spi_probe(struct spi_device *spi)
 
        ret = ade7854_probe(indio_dev, &spi->dev);
        if (ret)
-               iio_free_device(indio_dev);
+               iio_device_free(indio_dev);
 
        return 0;
 }
index 2f3c1e2a4b14e0ef25c3e447d384d5ba311db3ad..fa3ba01af41db00744fc7f27f644d8d32e5600a6 100644 (file)
@@ -581,7 +581,7 @@ int ade7854_probe(struct iio_dev *indio_dev, struct device *dev)
 error_unreg_dev:
        iio_device_unregister(indio_dev);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return ret;
 }
@@ -590,7 +590,7 @@ EXPORT_SYMBOL(ade7854_probe);
 int ade7854_remove(struct iio_dev *indio_dev)
 {
        iio_device_unregister(indio_dev);
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index 48e70e9effd50dfcecd49ca9e225e0b2e39835b3..8b71eb0e16f5c0fb89b5218061cdb4e7cb97e7d6 100644 (file)
@@ -112,7 +112,7 @@ static int __devinit ad2s1200_probe(struct spi_device *spi)
                                                DRV_NAME, pins[pn]);
                        goto error_ret;
                }
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -142,7 +142,7 @@ static int __devinit ad2s1200_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        for (--pn; pn >= 0; pn--)
                gpio_free(pins[pn]);
@@ -152,7 +152,7 @@ error_ret:
 static int __devexit ad2s1200_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index 4d580e238eb8333bb385e12f8cf9149e70d3e61f..a236ddbee3723c96b30da18347e07ada054871c5 100644 (file)
@@ -690,7 +690,7 @@ static int __devinit ad2s1210_probe(struct spi_device *spi)
        if (spi->dev.platform_data == NULL)
                return -EINVAL;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -731,7 +731,7 @@ static int __devinit ad2s1210_probe(struct spi_device *spi)
 error_free_gpios:
        ad2s1210_free_gpios(st);
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -742,7 +742,7 @@ static int __devexit ad2s1210_remove(struct spi_device *spi)
 
        iio_device_unregister(indio_dev);
        ad2s1210_free_gpios(iio_priv(indio_dev));
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 
        return 0;
 }
index cb689104937f3a47169504b750ead67c0358874e..a8057228dca135f4f0cf9435f1d57cb6d118696b 100644 (file)
@@ -64,7 +64,7 @@ static int __devinit ad2s90_probe(struct spi_device *spi)
        struct ad2s90_state *st;
        int ret = 0;
 
-       indio_dev = iio_allocate_device(sizeof(*st));
+       indio_dev = iio_device_alloc(sizeof(*st));
        if (indio_dev == NULL) {
                ret = -ENOMEM;
                goto error_ret;
@@ -93,7 +93,7 @@ static int __devinit ad2s90_probe(struct spi_device *spi)
        return 0;
 
 error_free_dev:
-       iio_free_device(indio_dev);
+       iio_device_free(indio_dev);
 error_ret:
        return ret;
 }
@@ -101,7 +101,7 @@ error_ret:
 static int __devexit ad2s90_remove(struct spi_device *spi)
 {
        iio_device_unregister(spi_get_drvdata(spi));
-       iio_free_device(spi_get_drvdata(spi));
+       iio_device_free(spi_get_drvdata(spi));
 
        return 0;
 }
index 999fd2e00e81b1ce633ac2d885577298f89caebf..f85734d212bbc7a0e9beff3740a40a2a25b8dbb2 100644 (file)
@@ -172,7 +172,7 @@ static int __devinit iio_bfin_tmr_trigger_probe(struct platform_device *pdev)
        st->timer_num = ret;
        st->t = &iio_bfin_timer_code[st->timer_num];
 
-       st->trig = iio_allocate_trigger("bfintmr%d", st->timer_num);
+       st->trig = iio_trigger_alloc("bfintmr%d", st->timer_num);
        if (!st->trig) {
                ret = -ENOMEM;
                goto out1;
@@ -203,7 +203,7 @@ static int __devinit iio_bfin_tmr_trigger_probe(struct platform_device *pdev)
 out4:
        iio_trigger_unregister(st->trig);
 out2:
-       iio_put_trigger(st->trig);
+       iio_trigger_put(st->trig);
 out1:
        kfree(st);
 out:
@@ -217,7 +217,7 @@ static int __devexit iio_bfin_tmr_trigger_remove(struct platform_device *pdev)
        disable_gptimers(st->t->bit);
        free_irq(st->irq, st);
        iio_trigger_unregister(st->trig);
-       iio_put_trigger(st->trig);
+       iio_trigger_put(st->trig);
        kfree(st);
 
        return 0;
index 95fd2f780f52b66dccdd656e2c20d10380cb5fdd..90b26846fc6b4c93ce7a538308bf3e21eac35b52 100644 (file)
@@ -72,7 +72,7 @@ static int iio_gpio_trigger_probe(struct platform_device *pdev)
 
                for (irq = irq_res->start; irq <= irq_res->end; irq++) {
 
-                       trig = iio_allocate_trigger("irqtrig%d", irq);
+                       trig = iio_trigger_alloc("irqtrig%d", irq);
                        if (!trig) {
                                ret = -ENOMEM;
                                goto error_free_completed_registrations;
@@ -114,7 +114,7 @@ error_release_irq:
 error_free_trig_info:
        kfree(trig_info);
 error_put_trigger:
-       iio_put_trigger(trig);
+       iio_trigger_put(trig);
 error_free_completed_registrations:
        /* The rest should have been added to the iio_gpio_trigger_list */
        list_for_each_entry_safe(trig,
@@ -144,7 +144,7 @@ static int iio_gpio_trigger_remove(struct platform_device *pdev)
                iio_trigger_unregister(trig);
                free_irq(trig_info->irq, trig);
                kfree(trig_info);
-               iio_put_trigger(trig);
+               iio_trigger_put(trig);
        }
        mutex_unlock(&iio_gpio_trigger_list_lock);
 
index 2c3ccda745eb6d9ec66b53116f6e812e3a526158..9f2d055524a38d05ee7f6cf30bba75850082488b 100644 (file)
@@ -112,7 +112,7 @@ static int iio_trig_periodic_rtc_probe(struct platform_device *dev)
        for (i = 0;; i++) {
                if (pdata[i] == NULL)
                        break;
-               trig = iio_allocate_trigger("periodic%s", pdata[i]);
+               trig = iio_trigger_alloc("periodic%s", pdata[i]);
                if (!trig) {
                        ret = -ENOMEM;
                        goto error_free_completed_registrations;
@@ -152,7 +152,7 @@ error_free_trig_info:
        kfree(trig_info);
 error_put_trigger_and_remove_from_list:
        list_del(&trig->alloc_list);
-       iio_put_trigger(trig);
+       iio_trigger_put(trig);
 error_free_completed_registrations:
        list_for_each_entry_safe(trig,
                                 trig2,
index 404ef192f89fc57055e4258690945f70774583b5..552763bb3d4cacc959912a63982f3c345e1fa027 100644 (file)
@@ -139,7 +139,7 @@ static int iio_sysfs_trigger_probe(int id)
                goto out1;
        }
        t->id = id;
-       t->trig = iio_allocate_trigger("sysfstrig%d", id);
+       t->trig = iio_trigger_alloc("sysfstrig%d", id);
        if (!t->trig) {
                ret = -ENOMEM;
                goto free_t;
@@ -158,7 +158,7 @@ static int iio_sysfs_trigger_probe(int id)
        return 0;
 
 out2:
-       iio_put_trigger(t->trig);
+       iio_trigger_put(t->trig);
 free_t:
        kfree(t);
 out1:
@@ -182,7 +182,7 @@ static int iio_sysfs_trigger_remove(int id)
        }
 
        iio_trigger_unregister(t->trig);
-       iio_free_trigger(t->trig);
+       iio_trigger_free(t->trig);
 
        list_del(&t->l);
        kfree(t);
index 9c0908a7046692ddf727c8ebadf343beaff2e94e..d21833909327f40715ff01cb0ddb76d1248fb344 100644 (file)
@@ -400,10 +400,10 @@ int iio_push_event(struct iio_dev *indio_dev, u64 ev_code, s64 timestamp);
 extern struct bus_type iio_bus_type;
 
 /**
- * iio_put_device() - reference counted deallocation of struct device
+ * iio_device_put() - reference counted deallocation of struct device
  * @dev: the iio_device containing the device
  **/
-static inline void iio_put_device(struct iio_dev *indio_dev)
+static inline void iio_device_put(struct iio_dev *indio_dev)
 {
        if (indio_dev)
                put_device(&indio_dev->dev);
@@ -412,10 +412,10 @@ static inline void iio_put_device(struct iio_dev *indio_dev)
 /* Can we make this smaller? */
 #define IIO_ALIGN L1_CACHE_BYTES
 /**
- * iio_allocate_device() - allocate an iio_dev from a driver
+ * iio_device_alloc() - allocate an iio_dev from a driver
  * @sizeof_priv: Space to allocate for private structure.
  **/
-struct iio_dev *iio_allocate_device(int sizeof_priv);
+struct iio_dev *iio_device_alloc(int sizeof_priv);
 
 static inline void *iio_priv(const struct iio_dev *indio_dev)
 {
@@ -429,10 +429,10 @@ static inline struct iio_dev *iio_priv_to_dev(void *priv)
 }
 
 /**
- * iio_free_device() - free an iio_dev from a driver
+ * iio_device_free() - free an iio_dev from a driver
  * @dev: the iio_dev associated with the device
  **/
-void iio_free_device(struct iio_dev *indio_dev);
+void iio_device_free(struct iio_dev *indio_dev);
 
 /**
  * iio_buffer_enabled() - helper function to test if the buffer is enabled
index 1cfca231db8f47de750eab5a2f5ccadd86a47a10..a9819940a84c60ae28003cb39c375a2e29b06723 100644 (file)
@@ -78,13 +78,13 @@ static inline struct iio_trigger *to_iio_trigger(struct device *d)
        return container_of(d, struct iio_trigger, dev);
 };
 
-static inline void iio_put_trigger(struct iio_trigger *trig)
+static inline void iio_trigger_put(struct iio_trigger *trig)
 {
        module_put(trig->ops->owner);
        put_device(&trig->dev);
 };
 
-static inline void iio_get_trigger(struct iio_trigger *trig)
+static inline void iio_trigger_get(struct iio_trigger *trig)
 {
        get_device(&trig->dev);
        __module_get(trig->ops->owner);
@@ -113,7 +113,7 @@ void iio_trigger_poll_chained(struct iio_trigger *trig, s64 time);
 
 irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private);
 
-__printf(1, 2) struct iio_trigger *iio_allocate_trigger(const char *fmt, ...);
-void iio_free_trigger(struct iio_trigger *trig);
+__printf(1, 2) struct iio_trigger *iio_trigger_alloc(const char *fmt, ...);
+void iio_trigger_free(struct iio_trigger *trig);
 
 #endif /* _IIO_TRIGGER_H_ */